aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch
blob: 1b5b63aa691aba368ab6cc220e9b8548bdd1b238 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/lib/vtls/polarssl.c
+++ b/lib/vtls/polarssl.c
@@ -592,7 +592,7 @@ void Curl_polarssl_session_free(void *pt
 
 size_t Curl_polarssl_version(char *buffer, size_t size)
 {
-  unsigned int version = version_get_number();
+  unsigned int version = POLARSSL_VERSION_NUMBER;
   return snprintf(buffer, size, "%s/%d.%d.%d",
                   version >= 0x01030A00?"mbedTLS":"PolarSSL",
                   version>>24, (version>>16)&0xff, (version>>8)&0xff);