diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2018-01-06 10:22:10 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2018-01-06 10:49:57 +0000 |
commit | 762e28dc89fc80eb806d5da8a11ad05a036347fb (patch) | |
tree | 711b7c38ac03a4314e4ac6aac02b918f0f94081e /rc.c | |
parent | Extend ssl_forbid_method to disable TLSv1.1 (diff) | |
download | w3m-762e28dc89fc80eb806d5da8a11ad05a036347fb.tar.gz w3m-762e28dc89fc80eb806d5da8a11ad05a036347fb.zip |
Fix multi-character character constant for ssl_forbid_method
Diffstat (limited to 'rc.c')
-rw-r--r-- | rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,7 +202,7 @@ static int OptionEncode = FALSE; #define CMT_SSL_CA_PATH N_("Path to directory for PEM encoded certificates of CAs") #define CMT_SSL_CA_FILE N_("File consisting of PEM encoded certificates of CAs") #endif /* USE_SSL_VERIFY */ -#define CMT_SSL_FORBID_METHOD N_("List of forbidden SSL methods (2: SSLv2, 3: SSLv3, t: TLSv1.0, t1.1: TLSv1.1)") +#define CMT_SSL_FORBID_METHOD N_("List of forbidden SSL methods (2: SSLv2, 3: SSLv3, t: TLSv1.0, 5: TLSv1.1)") #endif /* USE_SSL */ #ifdef USE_COOKIE #define CMT_USECOOKIE N_("Enable cookie processing") |