diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2015-05-27 01:29:16 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2015-05-27 01:30:30 -0400 |
commit | 49a6642f016b4817c901908799122583876f3dc1 (patch) | |
tree | 522512b741e6a3068bb7bf8e1897590f99640a97 /lib/vtls | |
parent | f81d356c2161ca394312760c03246889e6b30611 (diff) |
openssl: Use TLS_client_method for OpenSSL 1.1.0+
SSLv23_client_method is deprecated starting in OpenSSL 1.1.0. The
equivalent is TLS_client_method.
https://github.com/openssl/openssl/commit/13c9bb3#diff-708d3ae0f2c2973b272b811315381557
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/openssl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 667e76a55..3f3dc4e34 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1759,7 +1759,11 @@ static CURLcode ossl_connect_step1(struct connectdata *conn, int sockindex) case CURL_SSLVERSION_TLSv1_1: case CURL_SSLVERSION_TLSv1_2: /* it will be handled later with the context options */ +#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) + req_method = TLS_client_method(); +#else req_method = SSLv23_client_method(); +#endif use_sni(TRUE); break; case CURL_SSLVERSION_SSLv2: |