The --secure-protocol option accepts also values TLSv1_1 and TLSv1_2, as mentioned in the man page. However the help message doesn't mention these two values. This patch adds TLSv1_1 and TLSv1_2 as possible values to the help message.
Signed-off-by: Tomas Hozza <[email protected]> --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index a1d5714..8e9d6e9 100644 --- a/src/main.c +++ b/src/main.c @@ -808,7 +808,7 @@ HTTP options:\n"), HTTPS (SSL/TLS) options:\n"), N_("\ --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n\ - SSLv3, TLSv1 and PFS\n"), + SSLv3, TLSv1, TLSv1_1, TLSv1_2 and PFS\n"), N_("\ --https-only only follow secure HTTPS links\n"), N_("\ -- 2.7.4
