From: Pieter Lexis Date: Mon, 11 Jan 2016 09:09:21 +0000 (+0100) Subject: pdnsutil: don't check disabled records X-Git-Tag: dnsdist-1.0.0-alpha2~95^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3205%2Fhead;p=thirdparty%2Fpdns.git pdnsutil: don't check disabled records Closes #3184 --- diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 1198b673c6..00253b27d8 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -453,7 +453,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const DNSName& zone) ostringstream content; pair::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())