2653a12c4d
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>
11 lines
390 B
Diff
11 lines
390 B
Diff
--- 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;
|