]> granicus.if.org Git - pdns/commitdiff
dnsdist: remove optional arg from short-form -v
authorChris Hofstaedtler <chris.hofstaedtler@deduktiva.com>
Tue, 3 Apr 2018 09:20:02 +0000 (11:20 +0200)
committerChris Hofstaedtler <chris.hofstaedtler@deduktiva.com>
Tue, 3 Apr 2018 09:20:02 +0000 (11:20 +0200)
pdns/dnsdist.cc

index cd96999d5be45d7777b2a884085765146171d599..f08d0eaf248d2993f6c427904282c9bb7b17eac6 100644 (file)
@@ -2084,9 +2084,9 @@ try
   string optstring;
   for(;;) {
 #ifdef HAVE_LIBSODIUM
-    int c=getopt_long(argc, argv, "a:hce:C:k:l:v:g:u:V", longopts, &longindex);
+    int c=getopt_long(argc, argv, "a:hce:C:k:l:vg:u:V", longopts, &longindex);
 #else
-    int c=getopt_long(argc, argv, "a:hce:C:l:v:g:u:V", longopts, &longindex);
+    int c=getopt_long(argc, argv, "a:hce:C:l:vg:u:V", longopts, &longindex);
 #endif
     if(c==-1)
       break;