]> granicus.if.org Git - curl/commitdiff
manpage-scan.pl: allow deprecated options to get removed from curl.1
authorDaniel Stenberg <daniel@haxx.se>
Sat, 17 Dec 2016 22:48:13 +0000 (23:48 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 17 Dec 2016 22:48:13 +0000 (23:48 +0100)
--krb4, --ftp-ssl and --ftp-ssl-reqd no longer need to be documented in the
man page

tests/manpage-scan.pl

index fc6e1e3f09b1c280caae11300ae33daff7da92fd..f374be99d96a05658d05cd0ac8f4c2b85a3d644b 100644 (file)
@@ -147,10 +147,10 @@ my %opts = (
     '-N, --buffer' => 6,
     '--sessionid' => 6,
 
-    # deprecated options do not need to be in curl -h output
-    '--krb4' => 4,
-    '--ftp-ssl' => 4,
-    '--ftp-ssl-reqd' => 4,
+    # deprecated options do not need to be in tool_help.c nor curl.1
+    '--krb4' => 6,
+    '--ftp-ssl' => 6,
+    '--ftp-ssl-reqd' => 6,
 
     # for tests and debug only, can remain hidden
     '--test-event' => 6,