From a38eccb1a527c6270ea250db6a7d4e76f58c8aa0 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Mon, 11 Jan 2016 10:09:21 +0100 Subject: [PATCH] pdnsutil: don't check disabled records Closes #3184 --- pdns/pdnsutil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.47.2