From aabb307295354d4f524a827e61a54fa8076646fd Mon Sep 17 00:00:00 2001 From: Jan Christoph Uhde Date: Thu, 10 Jan 2019 13:39:01 +0100 Subject: [PATCH] fix openssl 1.3 usage --- lib/SimpleHttpClient/SslClientConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleHttpClient/SslClientConnection.cpp b/lib/SimpleHttpClient/SslClientConnection.cpp index a48f2e9ff8..d978117ac8 100644 --- a/lib/SimpleHttpClient/SslClientConnection.cpp +++ b/lib/SimpleHttpClient/SslClientConnection.cpp @@ -240,7 +240,7 @@ void SslClientConnection::init(uint64_t sslProtocol) { // openssl version number format is // MNNFFPPS: major minor fix patch status #if OPENSSL_VERSION_NUMBER >= 0x10101000L - meth = TLSv1_3_method(); + meth = TLS_client_method(); break; #else // no TLS 1.3 support