From: bert hubert Date: Mon, 21 Mar 2016 19:11:00 +0000 (+0100) Subject: fix --dnssec help output about defaults X-Git-Tag: dnsdist-1.0.0-beta1~74^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23b9120201278678700957951e6dde278e508ecf;p=thirdparty%2Fpdns.git fix --dnssec help output about defaults --- diff --git a/pdns/pdns_recursor.cc b/pdns/pdns_recursor.cc index 5b61e3161c..e0d54a5519 100644 --- a/pdns/pdns_recursor.cc +++ b/pdns/pdns_recursor.cc @@ -2660,7 +2660,7 @@ int main(int argc, char **argv) ::arg().set("local-address","IP addresses to listen on, separated by spaces or commas. Also accepts ports.")="127.0.0.1"; ::arg().setSwitch("non-local-bind", "Enable binding to non-local addresses by using FREEBIND / BINDANY socket options")="no"; ::arg().set("trace","if we should output heaps of logging. set to 'fail' to only log failing domains")="off"; - ::arg().set("dnssec", "DNSSEC mode: off (default)/process/log-fail/validate")="process"; + ::arg().set("dnssec", "DNSSEC mode: off/process (default)/log-fail/validate")="process"; ::arg().set("daemon","Operate as a daemon")="no"; ::arg().setSwitch("write-pid","Write a PID file")="yes"; ::arg().set("loglevel","Amount of logging. Higher is more. Do not set below 3")="4";