From 9c4a4ddc3b8483f51f867109fdec29ae4cb91a51 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sat, 30 Jan 2016 16:13:07 +0100 Subject: [PATCH] also list domains without a SOA record or disabled domains in pdnsutil list-all-zones closes #3318 --- pdns/pdnsutil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 384818cf0..762335d85 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++) { -- 2.40.0