diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-01 20:56:17 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-01 20:56:17 -0400 |
commit | 3a21c5bc3417b199af968e4ff52e80ca67ee66d7 (patch) | |
tree | 1d9ce6fbf85fe779949501c36b2ccaaf3777214f /WWW | |
parent | 1edda96f84bcdcc3ae45931b3197033908d6596e (diff) | |
download | lynx-snapshots-3a21c5bc3417b199af968e4ff52e80ca67ee66d7.tar.gz |
snapshot of project "lynx", label v2-8-8dev_16b
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 97406851..220ae35f 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.128 2013/05/05 19:36:45 tom Exp $ + * $LynxId: HTTP.c,v 1.129 2013/10/01 15:09:29 tom Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -717,7 +717,10 @@ static int HTLoadHTTP(const char *arg, handle->options |= SSL_OP_NO_TLSv1; #if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT) } else { - SSL_set_tlsext_host_name(handle, ssl_host); + int ret = SSL_set_tlsext_host_name(handle, ssl_host); + + CTRACE((tfp, "...called SSL_set_tlsext_host_name(%s) ->%d\n", + ssl_host, ret)); #endif } #endif |