From: Wouter Wijngaards Date: Tue, 17 Jul 2018 07:03:37 +0000 (+0000) Subject: - Fix #4127 unbound -h does not list -p help. X-Git-Tag: release-1.8.0rc1~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ae750e552e8aa509b0231a570a719045ab8440a;p=thirdparty%2Funbound.git - Fix #4127 unbound -h does not list -p help. git-svn-id: file:///svn/unbound/trunk@4783 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/daemon/unbound.c b/daemon/unbound.c index 138311013..4100fe3d3 100644 --- a/daemon/unbound.c +++ b/daemon/unbound.c @@ -101,6 +101,7 @@ static void usage(void) printf("-c file config file to read instead of %s\n", CONFIGFILE); printf(" file format is described in unbound.conf(5).\n"); printf("-d do not fork into the background.\n"); + printf("-p do not create a pidfile.\n"); printf("-v verbose (more times to increase verbosity)\n"); #ifdef UB_ON_WINDOWS printf("-w opt windows option: \n"); diff --git a/doc/Changelog b/doc/Changelog index b8d7698d2..67080ae53 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +17 July 2018: Wouter + - Fix #4127 unbound -h does not list -p help. + 16 July 2018: Wouter - Fix qname minimisation NXDOMAIN validation lookup failures causing error_supers assertion fails.