From: Peter van Dijk Date: Mon, 2 Apr 2018 17:02:36 +0000 (+0200) Subject: dnsdist: remove -d, -p flags after #6394 X-Git-Tag: dnsdist-1.3.1~181^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbed0e6d6ef600d36e12850b08fd23f9151a6690;p=thirdparty%2Fpdns.git dnsdist: remove -d, -p flags after #6394 [zeha: squashed] --- diff --git a/pdns/dnsdist.cc b/pdns/dnsdist.cc index b87c5b3db7..0cf94293a0 100644 --- a/pdns/dnsdist.cc +++ b/pdns/dnsdist.cc @@ -2082,9 +2082,9 @@ try string optstring; for(;;) { #ifdef HAVE_LIBSODIUM - int c=getopt_long(argc, argv, "a:hcde:C:k:l:vp:g:u:V", longopts, &longindex); + int c=getopt_long(argc, argv, "a:hce:C:k:l:v:g:u:V", longopts, &longindex); #else - int c=getopt_long(argc, argv, "a:hcde:C:l:vp:g:u:V", longopts, &longindex); + int c=getopt_long(argc, argv, "a:hce:C:l:v:g:u:V", longopts, &longindex); #endif if(c==-1) break;