summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-12-17 23:48:13 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-12-17 23:48:13 +0100
commit7618e60c271ca11a8422d48dc91bf397a7953e86 (patch)
tree897faaaf7252dbfbfa83c8d03029787024a86f2c
parent58206f0ef21df5f20b4932f2fdce181abd579cfe (diff)
downloadcurl-7618e60c271ca11a8422d48dc91bf397a7953e86.tar.gz
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
-rw-r--r--tests/manpage-scan.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/manpage-scan.pl b/tests/manpage-scan.pl
index fc6e1e3f0..f374be99d 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,