From bbed0e6d6ef600d36e12850b08fd23f9151a6690 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 2 Apr 2018 19:02:36 +0200 Subject: [PATCH] dnsdist: remove -d, -p flags after #6394 [zeha: squashed] --- pdns/dnsdist.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/dnsdist.cc b/pdns/dnsdist.cc index b87c5b3db..0cf94293a 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; -- 2.40.0