From: bert hubert Date: Sat, 30 Jan 2016 15:13:07 +0000 (+0100) Subject: also list domains without a SOA record or disabled domains in pdnsutil list-all-zones... X-Git-Tag: dnsdist-1.0.0-alpha2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c4a4ddc3b8483f51f867109fdec29ae4cb91a51;p=thirdparty%2Fpdns.git also list domains without a SOA record or disabled domains in pdnsutil list-all-zones closes #3318 --- diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 384818cf09..762335d855 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -1308,7 +1308,7 @@ int listAllZones(const string &type="") { UeberBackend B("default"); vector domains; - B.getAllDomains(&domains); + B.getAllDomains(&domains, true); int count = 0; for (vector::const_iterator di=domains.begin(); di != domains.end(); di++) {