From a7848d6cd2250012364a0d27cb94a4837255cab5 Mon Sep 17 00:00:00 2001 From: XinyuHou Date: Thu, 23 Apr 2015 11:28:15 +0100 Subject: [PATCH] Made comment more clear #4567 --- src/lib/plugin/ns/SecureSocket.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/plugin/ns/SecureSocket.cpp b/src/lib/plugin/ns/SecureSocket.cpp index 0a36daab..8ff79369 100644 --- a/src/lib/plugin/ns/SecureSocket.cpp +++ b/src/lib/plugin/ns/SecureSocket.cpp @@ -210,12 +210,11 @@ SecureSocket::initContext(bool server) // load all error messages SSL_load_error_strings(); + // SSLv23_method uses TLSv1, with the ability to fall back to SSLv3 if (server) { - // create new server-method instance method = SSLv23_server_method(); } else { - // create new client-method instance method = SSLv23_client_method(); }