From 23d26d84cce04afc0c30272c71a8c7d3a95676d3 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Mon, 11 Jan 2016 10:09:21 +0100 Subject: [PATCH] pdnssec: don't check disabled records Closes #3184 --- pdns/pdnssec.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/pdnssec.cc b/pdns/pdnssec.cc index 63defb4c067d..77a73cc74bea 100644 --- a/pdns/pdnssec.cc +++ b/pdns/pdnssec.cc @@ -446,7 +446,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const std::string& 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())