]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
pdnsutil: don't check disabled records 3205/head
authorPieter Lexis <pieter.lexis@powerdns.com>
Mon, 11 Jan 2016 09:09:21 +0000 (10:09 +0100)
committerPieter Lexis <pieter.lexis@powerdns.com>
Mon, 11 Jan 2016 11:51:19 +0000 (12:51 +0100)
Closes #3184

pdns/pdnsutil.cc

index 1198b673c648ce4c827a3ce28c392b6dd85a2e9a..00253b27d8bbc801d00e7595f86e245bbe51d019 100644 (file)
@@ -453,7 +453,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const DNSName& zone)
   ostringstream content;
   pair<map<string, unsigned int>::iterator,bool> ret;
 
-  sd.db->list(zone, sd.domain_id, true);
+  sd.db->list(zone, sd.domain_id, false);
 
   while(sd.db->get(rr)) {
     if(!rr.qtype.getCode())