aboutsummaryrefslogtreecommitdiffstats
path: root/rc.c
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2021-02-11 08:06:32 +0000
committerTatsuya Kinoshita <tats@debian.org>2021-02-11 10:37:17 +0000
commitfb9f1c0356d4907a045391840d57bbe21cbf83a8 (patch)
tree51861e80ce9ec43cb6e0810c88574069b69eaaf4 /rc.c
parentMerge pull request #164 from bptato/brotli (diff)
downloadw3m-fb9f1c0356d4907a045391840d57bbe21cbf83a8.tar.gz
w3m-fb9f1c0356d4907a045391840d57bbe21cbf83a8.zip
Update ssl_min_version to accept "all" and reject "SSLv2"
Diffstat (limited to '')
-rw-r--r--rc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.c b/rc.c
index f2c4021..3c72ffb 100644
--- a/rc.c
+++ b/rc.c
@@ -206,7 +206,7 @@ static int OptionEncode = FALSE;
#endif /* USE_SSL_VERIFY */
#define CMT_SSL_FORBID_METHOD N_("List of forbidden SSL methods (2: SSLv2, 3: SSLv3, t: TLSv1.0, 5: TLSv1.1, 6: TLSv1.2, 7: TLSv1.3)")
#ifdef SSL_CTX_set_min_proto_version
-#define CMT_SSL_MIN_VERSION N_("Minimum SSL version (TLSv1.0, TLSv1.1, TLSv1.2, or TLSv1.3)")
+#define CMT_SSL_MIN_VERSION N_("Minimum SSL version (all, TLSv1.0, TLSv1.1, TLSv1.2, or TLSv1.3)")
#endif
#define CMT_SSL_CIPHER N_("SSL ciphers for TLSv1.2 and below (e.g. DEFAULT:@SECLEVEL=2)")
#endif /* USE_SSL */