Date: Fri, 3 Nov 2017 15:51:11 +0000 (UTC) From: Bernard Spil <brnrd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453409 - head/security/openssl/files Message-ID: <201711031551.vA3FpBa4019658@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brnrd Date: Fri Nov 3 15:51:10 2017 New Revision: 453409 URL: https://svnweb.freebsd.org/changeset/ports/453409 Log: security/openssl: Unbreak build with No-SSLv3 - Importing patch from upstream PR: 223388 Submitted by: tijl Reported by: Laurence Parry <greenreaper@hotmail.com> Added: head/security/openssl/files/patch-ssl_s23__clnt.c (contents, props changed) Added: head/security/openssl/files/patch-ssl_s23__clnt.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openssl/files/patch-ssl_s23__clnt.c Fri Nov 3 15:51:10 2017 (r453409) @@ -0,0 +1,28 @@ +From 98fe34c30fe1fb7be3023e4c1458da73f8e55da9 Mon Sep 17 00:00:00 2001 +From: Kurt Roeckx <kurt@roeckx.be> +Date: Thu, 2 Nov 2017 18:53:16 +0100 +Subject: [PATCH] Fix no-ssl3-method build + +Reviewed-by: Rich Salz <rsalz@openssl.org> +GH: #4649 +--- + ssl/s23_clnt.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c +index 92f41dd549a..05b892b7238 100644 +--- ssl/s23_clnt.c.orig ++++ 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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711031551.vA3FpBa4019658>