]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
also list domains without a SOA record or disabled domains in pdnsutil list-all-zones...
authorbert hubert <bert.hubert@netherlabs.nl>
Sat, 30 Jan 2016 15:13:07 +0000 (16:13 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Sat, 30 Jan 2016 15:13:07 +0000 (16:13 +0100)
pdns/pdnsutil.cc

index 384818cf095261fb9183d5059e03009a98b83fba..762335d855fbaaca688fbc113adee92591479151 100644 (file)
@@ -1308,7 +1308,7 @@ int listAllZones(const string &type="") {
   UeberBackend B("default");
 
   vector<DomainInfo> domains;
-  B.getAllDomains(&domains);
+  B.getAllDomains(&domains, true);
 
   int count = 0;
   for (vector<DomainInfo>::const_iterator di=domains.begin(); di != domains.end(); di++) {