diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-02-07 20:28:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-07 20:29:13 +0100 |
commit | 67d14ab98f8b819ee6f5e6a4a2770d311c6bf13b (patch) | |
tree | ec1d9aec2a08ee84e0c43c2089db79d298f316f9 | |
parent | 6c492f34e5f95da491ff0491c90e91a33e03619a (diff) |
--help: add missing --tlsv1.x options
-rw-r--r-- | src/tool_help.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tool_help.c b/src/tool_help.c index ac2e7ae5f..e129ebb4d 100644 --- a/src/tool_help.c +++ b/src/tool_help.c @@ -207,7 +207,10 @@ static const char *const helptext[] = { " -t, --telnet-option OPT=VAL Set telnet option", " --tftp-blksize VALUE Set TFTP BLKSIZE option (must be >512)", " -z, --time-cond TIME Transfer based on a time condition", - " -1, --tlsv1 Use TLSv1 (SSL)", + " -1, --tlsv1 Use => TLSv1 (SSL)", + " --tlsv1.0 Use TLSv1.0 (SSL)", + " --tlsv1.1 Use TLSv1.1 (SSL)", + " --tlsv1.2 Use TLSv1.2 (SSL)", " --trace FILE Write a debug trace to the given file", " --trace-ascii FILE Like --trace but without the hex output", " --trace-time Add time stamps to trace/verbose output", |