commit:     7ac71c23e9da3c5bf8e5481e4e9b8015fa987cab
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Sep 20 12:35:25 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 13:57:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ac71c23

net-vpn/openvpn: remove unused patch/file.

Closes: https://github.com/gentoo/gentoo/pull/5736

 .../openvpn/files/openvpn-2.4.0-fix-libressl.patch  | 21 ---------------------
 net-vpn/openvpn/files/openvpn.tmpfile               |  1 -
 2 files changed, 22 deletions(-)

diff --git a/net-vpn/openvpn/files/openvpn-2.4.0-fix-libressl.patch 
b/net-vpn/openvpn/files/openvpn-2.4.0-fix-libressl.patch
deleted file mode 100644
index 4c3aca5d5a9..00000000000
--- a/net-vpn/openvpn/files/openvpn-2.4.0-fix-libressl.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/openvpn/ssl_openssl.c b/src/openvpn/ssl_openssl.c
-index 8266595..a889332 100644
---- a/src/openvpn/ssl_openssl.c
-+++ b/src/openvpn/ssl_openssl.c
-@@ -508,10 +508,13 @@ tls_ctx_load_ecdh_params(struct tls_root_ctx *ctx, const 
char *curve_name
-         const EC_GROUP *ecgrp = NULL;
-         EVP_PKEY *pkey = NULL;
-
--        /* Little hack to get private key ref from SSL_CTX, yay OpenSSL... */
--        SSL ssl;
--        ssl.cert = ctx->ctx->cert;
--        pkey = SSL_get_privatekey(&ssl);
-+        SSL *ssl = SSL_new(ctx->ctx);
-+        if (!ssl)
-+        {
-+            crypto_msg(M_FATAL, "SSL_new failed");
-+        }
-+        pkey = SSL_get_privatekey(ssl);
-+        SSL_free(ssl);
-
-         msg(D_TLS_DEBUG, "Extracting ECDH curve from private key");

diff --git a/net-vpn/openvpn/files/openvpn.tmpfile 
b/net-vpn/openvpn/files/openvpn.tmpfile
deleted file mode 100644
index d5fca71a00a..00000000000
--- a/net-vpn/openvpn/files/openvpn.tmpfile
+++ /dev/null
@@ -1 +0,0 @@
-D /var/run/openvpn 0710 root openvpn -

Reply via email to