You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
390 B
11 lines
390 B
--- 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;
|
|
|