diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-11 18:37:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-11 18:37:28 +0000 |
commit | 37a57c1d710f3c6b06a4c352cd432d562e1c2f6c (patch) | |
tree | eca470e102b2b668172b990f1484f5f749d55ee9 /package/network/services/openvpn/patches/100-polarssl-disable-runtime-version-check.patch | |
parent | 2f55804f1354bf4278486ab47df89fa316c9c0c8 (diff) | |
download | mtk-20170518-37a57c1d710f3c6b06a4c352cd432d562e1c2f6c.zip mtk-20170518-37a57c1d710f3c6b06a4c352cd432d562e1c2f6c.tar.gz mtk-20170518-37a57c1d710f3c6b06a4c352cd432d562e1c2f6c.tar.bz2 |
openvpn: update to version 2.3.10
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48201
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.patch | 11 |
1 files changed, 11 insertions, 0 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 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; |