From 01d72d81f7e86f9433a81792cd61038506fe0048 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 20 Dec 2014 09:04:54 +0100 Subject: curl: sync with 7.29.0-19 from RHEL-7 (for EL-5) --- 0201-curl-7.29.0-openssl.patch | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 0201-curl-7.29.0-openssl.patch (limited to '0201-curl-7.29.0-openssl.patch') diff --git a/0201-curl-7.29.0-openssl.patch b/0201-curl-7.29.0-openssl.patch new file mode 100644 index 0000000..984d916 --- /dev/null +++ b/0201-curl-7.29.0-openssl.patch @@ -0,0 +1,31 @@ +--- ./lib/ssluse.c.old 2014-12-20 08:10:34.590020955 +0100 ++++ ./lib/ssluse.c 2014-12-20 08:12:24.143382067 +0100 +@@ -1524,20 +1524,28 @@ + case CURL_SSLVERSION_TLSv1_0: + ctx_options |= SSL_OP_NO_SSLv2; + ctx_options |= SSL_OP_NO_SSLv3; ++#ifdef SSL_OP_NO_TLSv1_1 + ctx_options |= SSL_OP_NO_TLSv1_1; ++#endif ++#ifdef SSL_OP_NO_TLSv1_2 + ctx_options |= SSL_OP_NO_TLSv1_2; ++#endif + break; + case CURL_SSLVERSION_TLSv1_1: + ctx_options |= SSL_OP_NO_SSLv2; + ctx_options |= SSL_OP_NO_SSLv3; + ctx_options |= SSL_OP_NO_TLSv1; ++#ifdef SSL_OP_NO_TLSv1_2 + ctx_options |= SSL_OP_NO_TLSv1_2; ++#endif + break; + case CURL_SSLVERSION_TLSv1_2: + ctx_options |= SSL_OP_NO_SSLv2; + ctx_options |= SSL_OP_NO_SSLv3; + ctx_options |= SSL_OP_NO_TLSv1; ++#ifdef SSL_OP_NO_TLSv1_1 + ctx_options |= SSL_OP_NO_TLSv1_1; ++#endif + break; + } + -- cgit