From: Peter van Dijk Date: Mon, 17 Feb 2014 18:06:44 +0000 (+0000) Subject: default log-dns-details to "no" instead of the empty string that apparently meant... X-Git-Tag: rec-3.6.0-rc1~175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfccf353ac6ff5dd2177f5a82cc9928bc0fef3a7;p=thirdparty%2Fpdns.git default log-dns-details to "no" instead of the empty string that apparently meant "yes", thanks @terrorobe --- diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index f73afee001..5cdcd5c6f6 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -48,7 +48,7 @@ void declareArguments() ::arg().setSwitch("experimental-rfc2136","Enable/Disable RFC2136 (Dynamic DNS) support. Default is no.")="no"; ::arg().set("allow-2136-from","A global setting to allow RFC2136 from these IP ranges.")="0.0.0.0/0"; ::arg().setSwitch("forward-2136","A global setting to allow RFC2136 packages that are for a Slave domain, to be forwarded to the master.")="yes"; - ::arg().setSwitch("log-dns-details","If PDNS should log DNS non-erroneous details")=""; + ::arg().setSwitch("log-dns-details","If PDNS should log DNS non-erroneous details")="no"; ::arg().setSwitch("log-dns-queries","If PDNS should log all incoming DNS queries")="no"; ::arg().set("urlredirector","Where we send hosts to that need to be url redirected")="127.0.0.1"; ::arg().set("smtpredirector","Our smtpredir MX host")="a.misconfigured.powerdns.smtp.server";