aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2016-03-30 11:48:53 +0000
committerTatsuya Kinoshita <tats@debian.org>2016-03-30 11:48:53 +0000
commit631784149d9173cb363f5d1f3a231bf8fc90dd33 (patch)
treea20980b7dd4b0231a1c87b9780ff592bf87f289f /url.c
parentUpdate ChangeLog (diff)
downloadw3m-631784149d9173cb363f5d1f3a231bf8fc90dd33.tar.gz
w3m-631784149d9173cb363f5d1f3a231bf8fc90dd33.zip
Disable RC4
Origin: http://git.savannah.gnu.org/cgit/guix.git/commit/?id=62339e2d493bf87a3aabe12e45458581e9705d83
Diffstat (limited to 'url.c')
-rw-r--r--url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/url.c b/url.c
index 1a49cfa..c90cd9f 100644
--- a/url.c
+++ b/url.c
@@ -327,7 +327,7 @@ openSSLHandle(int sock, char *hostname, char **p_cert)
SSL_load_error_strings();
if (!(ssl_ctx = SSL_CTX_new(SSLv23_client_method())))
goto eend;
- SSL_CTX_set_cipher_list(ssl_ctx, "DEFAULT:!LOW:!EXP");
+ SSL_CTX_set_cipher_list(ssl_ctx, "DEFAULT:!LOW:!RC4:!EXP");
option = SSL_OP_ALL;
if (ssl_forbid_method) {
if (strchr(ssl_forbid_method, '2'))