From: Kees Monshouwer Date: Tue, 2 Feb 2016 17:46:56 +0000 (+0100) Subject: pdnssec: check all records (including disabled ones) in verbose mode X-Git-Tag: dnsdist-1.0.0-alpha2~13^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c889dde8cf5f0098eed90f95decce5d4e2ec4225;p=thirdparty%2Fpdns.git pdnssec: check all records (including disabled ones) in verbose mode --- diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 83173e9268..9b19023199 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -457,7 +457,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const DNSName& zone, const vect vector records; if(!suppliedrecords) { - sd.db->list(zone, sd.domain_id, false); + sd.db->list(zone, sd.domain_id, g_verbose); while(sd.db->get(rr)) { records.push_back(rr); }