diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2016-10-20 21:04:44 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2016-10-20 21:04:44 -0400 |
commit | 3cf187da658dde6b54df4aa335b281163083f782 (patch) | |
tree | 9dee1f127f37b18fe9d7ef8d8fe8ff21d439a87a /WWW/Library | |
parent | c0b9e24db98a62983ac327fa3ba0622afab1b47f (diff) | |
download | lynx-snapshots-3cf187da658dde6b54df4aa335b281163083f782.tar.gz |
snapshot of project "lynx", label v2-8-9dev_9g
Diffstat (limited to 'WWW/Library')
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index f266b029..bb457e07 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.154 2016/10/11 08:57:05 Al.Walker Exp $ + * $LynxId: HTTP.c,v 1.155 2016/10/20 21:04:44 Kamil.Dudka Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -802,7 +802,7 @@ static int HTLoadHTTP(const char *arg, #elif SSLEAY_VERSION_NUMBER >= 0x0900 #ifndef USE_NSS_COMPAT_INCL if (!try_tls) { - handle->options |= SSL_OP_NO_TLSv1; + SSL_set_options(handle, SSL_OP_NO_TLSv1); CTRACE((tfp, "...adding SSL_OP_NO_TLSv1\n")); } #if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT) |