aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch')
-rw-r--r--package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch11
1 files changed, 0 insertions, 11 deletions
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
deleted file mode 100644
index c7955c2460..0000000000
--- a/package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/openvpn/ssl_polarssl.c
-+++ b/src/openvpn/ssl_polarssl.c
-@@ -1156,7 +1156,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;