From 37a57c1d710f3c6b06a4c352cd432d562e1c2f6c Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 11 Jan 2016 18:37:28 +0000 Subject: openvpn: update to version 2.3.10 Signed-off-by: Felix Fietkau SVN-Revision: 48201 --- .../patches/100-polarssl-disable-runtime-version-check.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch (limited to 'package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch') diff --git a/package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch b/package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch new file mode 100644 index 0000000..73ab406 --- /dev/null +++ b/package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch @@ -0,0 +1,11 @@ +--- a/src/openvpn/ssl_polarssl.c ++++ b/src/openvpn/ssl_polarssl.c +@@ -1153,7 +1153,7 @@ const char * + get_ssl_library_version(void) + { + static char polar_version[30]; +- unsigned int pv = version_get_number(); ++ unsigned int pv = POLARSSL_VERSION_NUMBER; + sprintf( polar_version, "PolarSSL %d.%d.%d", + (pv>>24)&0xff, (pv>>16)&0xff, (pv>>8)&0xff ); + return polar_version; -- cgit v1.1