]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
pdnssec: don't check disabled records 3208/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:52:35 +0000 (12:52 +0100)
Closes #3184

pdns/pdnssec.cc

index 63defb4c067def2bb273ae3012f1a4be15eb4b5c..77a73cc74bea8badf0b9ac9e01fdf78450f00a54 100644 (file)
@@ -446,7 +446,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const std::string& 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())