From c889dde8cf5f0098eed90f95decce5d4e2ec4225 Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Tue, 2 Feb 2016 18:46:56 +0100 Subject: [PATCH] pdnssec: check all records (including disabled ones) in verbose mode --- pdns/pdnsutil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.2