mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45608 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
390 B
Diff
12 lines
390 B
Diff
--- a/src/openvpn/ssl_polarssl.c
|
|
+++ b/src/openvpn/ssl_polarssl.c
|
|
@@ -1119,7 +1119,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;
|