diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-02 14:47:09 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-02 14:47:09 -0400 |
commit | 080f58558da81e4d715d50c357d8e121c4d8af15 (patch) | |
tree | 0a6fe916e76fe7f1413443c8f5d2bfc1eba7bf08 /WWW | |
parent | 3b6378f767f39efc0e8da6f7f8bb36f76e684b5f (diff) | |
download | lynx-snapshots-080f58558da81e4d715d50c357d8e121c4d8af15.tar.gz |
snapshot of project "lynx", label v2-8-8dev_16e
Diffstat (limited to 'WWW')
-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 7ca34dd6..19016457 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.130 2013/10/01 21:58:37 tom Exp $ + * $LynxId: HTTP.c,v 1.131 2013/10/02 14:33:32 tom Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -717,7 +717,7 @@ static int HTLoadHTTP(const char *arg, handle->options |= SSL_OP_NO_TLSv1; #if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT) } else { - int ret = SSL_set_tlsext_host_name(handle, ssl_host); + int ret = (int) SSL_set_tlsext_host_name(handle, ssl_host); CTRACE((tfp, "...called SSL_set_tlsext_host_name(%s) ->%d\n", ssl_host, ret)); |