summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2016-05-18 08:26:40 -0400
committerAnthony G. Basile <blueness@gentoo.org>2016-05-18 08:27:09 -0400
commit80c4532dd61fbe55ed7496ef00efa3e439da7309 (patch)
tree0f52da1eeaf2c466ca976f797b167f77ac309db0 /net-misc/curl/files
parentnet-misc/curl: bump for CVE-2016-3739, bug #583394 (diff)
downloadgentoo-80c4532dd61fbe55ed7496ef00efa3e439da7309.tar.gz
gentoo-80c4532dd61fbe55ed7496ef00efa3e439da7309.tar.bz2
gentoo-80c4532dd61fbe55ed7496ef00efa3e439da7309.zip
net-misc/curl: remove older unstable version for CVE-2016-3739
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-misc/curl/files')
-rw-r--r--net-misc/curl/files/curl-7.48.0-libressl.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-misc/curl/files/curl-7.48.0-libressl.patch b/net-misc/curl/files/curl-7.48.0-libressl.patch
deleted file mode 100644
index 3a3fe83a22f0..000000000000
--- a/net-misc/curl/files/curl-7.48.0-libressl.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-See: https://bugs.gentoo.org/show_bug.cgi?id=578098
-
-commit 240cd84b494e0ffee8ad261c43b927d246cf6be1
-Author: Daniel Stenberg <daniel@haxx.se>
-Date: Wed Mar 23 10:04:48 2016 +0100
-
- openssl: fix ERR_remove_thread_state() for boringssl/libressl
-
- The removed arg is only done in OpenSSL
-
- Bug: https://twitter.com/xtraemeat/status/712564874098917376
-
-diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
-index cbf2d21..b7e4462 100644
---- a/lib/vtls/openssl.c
-+++ b/lib/vtls/openssl.c
-@@ -95,7 +95,9 @@
-
- #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
- #define HAVE_ERR_REMOVE_THREAD_STATE 1
--#if (OPENSSL_VERSION_NUMBER >= 0x10100004L)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100004L) && \
-+ !defined(LIBRESSL_VERSION_NUMBER) && \
-+ !defined(OPENSSL_IS_BORINGSSL)
- /* OpenSSL 1.1.0-pre4 removed the argument! */
- #define HAVE_ERR_REMOVE_THREAD_STATE_NOARG 1
- #endif