From: Gisle Vanem Date: Mon, 7 Dec 2015 23:43:35 +0000 (-0500) Subject: openssl: BoringSSL doesn't have CONF_modules_free X-Git-Tag: curl-7_47_0~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df40b20e444ede5dc4e93073fa740eeb52f7bed2;p=thirdparty%2Fcurl.git openssl: BoringSSL doesn't have CONF_modules_free --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index b2520e83dc..551c2a88d7 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -123,8 +123,9 @@ #define NO_RAND_SEED 1 /* In BoringSSL OpenSSL_add_all_algorithms does nothing */ #define OpenSSL_add_all_algorithms() -/* BoringSSL does not have CONF_modules_load_file */ +/* BoringSSL does not have CONF_modules_load_file, CONF_modules_free */ #define CONF_modules_load_file(a,b,c) +#define CONF_modules_free() #endif #if (OPENSSL_VERSION_NUMBER < 0x0090808fL) || defined(OPENSSL_IS_BORINGSSL)