Author: nbd
Date: 2015-05-05 12:12:49 +0200 (Tue, 05 May 2015)
New Revision: 45609

Added:
   
trunk/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch
Log:
curl: replace polarssl run-time version check with a compile-time one

Signed-off-by: Felix Fietkau <[email protected]>

Added: 
trunk/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch
===================================================================
--- 
trunk/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch
                           (rev 0)
+++ 
trunk/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch
   2015-05-05 10:12:49 UTC (rev 45609)
@@ -0,0 +1,11 @@
+--- a/lib/vtls/polarssl.c
++++ b/lib/vtls/polarssl.c
+@@ -591,7 +591,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, "PolarSSL/%d.%d.%d", version>>24,
+                   (version>>16)&0xff, (version>>8)&0xff);
+ }
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to