[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Kurt Roeckx
kurt at openssl.org
Fri Nov 3 14:20:10 UTC 2017
The branch OpenSSL_1_0_2-stable has been updated
via 98fe34c30fe1fb7be3023e4c1458da73f8e55da9 (commit)
from 95aec441c0a8d4caa4590f9ba2827a131134e8d1 (commit)
- Log -----------------------------------------------------------------
commit 98fe34c30fe1fb7be3023e4c1458da73f8e55da9
Author: Kurt Roeckx <kurt at roeckx.be>
Date: Thu Nov 2 18:53:16 2017 +0100
Fix no-ssl3-method build
Reviewed-by: Rich Salz <rsalz at openssl.org>
GH: #4649
-----------------------------------------------------------------------
Summary of changes:
ssl/s23_clnt.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index 92f41dd..05b892b 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -757,10 +757,12 @@ static int ssl23_get_server_hello(SSL *s)
s->version = TLS1_VERSION;
s->method = TLSv1_client_method();
break;
+#ifndef OPENSSL_NO_SSL3_METHOD
case SSL3_VERSION:
s->version = SSL3_VERSION;
s->method = SSLv3_client_method();
break;
+#endif
}
SSLerr(SSL_F_SSL23_GET_SERVER_HELLO, SSL_R_UNSUPPORTED_PROTOCOL);
ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_PROTOCOL_VERSION);
More information about the openssl-commits
mailing list