From: Daniel Stenberg Date: Sat, 17 Dec 2016 22:48:13 +0000 (+0100) Subject: manpage-scan.pl: allow deprecated options to get removed from curl.1 X-Git-Tag: curl-7_52_0~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7618e60c271ca11a8422d48dc91bf397a7953e86;p=thirdparty%2Fcurl.git manpage-scan.pl: allow deprecated options to get removed from curl.1 --krb4, --ftp-ssl and --ftp-ssl-reqd no longer need to be documented in the man page --- diff --git a/tests/manpage-scan.pl b/tests/manpage-scan.pl index fc6e1e3f09..f374be99d9 100644 --- a/tests/manpage-scan.pl +++ b/tests/manpage-scan.pl @@ -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,