aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch
diff options
context:
space:
mode:
authorMagnus Kroken <mkroken@gmail.com>2016-08-24 00:14:46 +0200
committerJo-Philipp Wich <jo@mein.io>2016-08-24 00:33:08 +0200
commit2653a12c4d5d9c0f600a9d06667aaa3bc55c8756 (patch)
treef9e062c618103cf3a00c69a792caafb583d1c263 /package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch
parentdf047234786ce61c3fd36bf9cf098d21737ae199 (diff)
downloadupstream-2653a12c4d5d9c0f600a9d06667aaa3bc55c8756.tar.gz
upstream-2653a12c4d5d9c0f600a9d06667aaa3bc55c8756.tar.bz2
upstream-2653a12c4d5d9c0f600a9d06667aaa3bc55c8756.zip
openvpn: update to 2.3.12
300-upstream-fix-polarssl-mbedtls-builds.patch has been applied upstream. Replaced 101-remove_polarssl_debug_call.patch with upstream backport. Changelog: https://community.openvpn.net/openvpn/wiki/ChangesInOpenvpn23#OpenVPN2.3.12 Signed-off-by: Magnus Kroken <mkroken@gmail.com>
Diffstat (limited to 'package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch')
-rw-r--r--package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch b/package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch
deleted file mode 100644
index 3cef32395e..0000000000
--- a/package/network/services/openvpn/patches/101-remove_polarssl_debug_call.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-openvpn: remove call to PolarSSL debug function
-
-OpenVPN >=2.3.11 uses PolarSSL debug functions for improved logging.
-This requires that PolarSSL is built with POLARSSL_DEBUG_C, which increases
-its size significantly.
-
-This change does not impact OpenVPN operation, see:
-https://sourceforge.net/p/openvpn/mailman/message/35153943/
-
-Signed-off-by: Magnus Kroken <mkroken@gmail.com>
-
---- a/src/openvpn/ssl_polarssl.c
-+++ b/src/openvpn/ssl_polarssl.c
-@@ -742,7 +742,7 @@ void key_state_ssl_init(struct key_state
- if (polar_ok(ssl_init(ks_ssl->ctx)))
- {
- /* Initialise SSL context */
-- debug_set_threshold(3);
-+ /*debug_set_threshold(3);*/
- ssl_set_dbg (ks_ssl->ctx, my_debug, NULL);
- ssl_set_endpoint (ks_ssl->ctx, ssl_ctx->endpoint);