aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@yahoo.no>2015-12-07 18:43:35 -0500
committerJay Satiro <raysatiro@yahoo.com>2015-12-07 18:47:26 -0500
commitdf40b20e444ede5dc4e93073fa740eeb52f7bed2 (patch)
tree1137a9ed79b55ddcfbb48b6ddd57bf44705cfb47
parente1b6b2219d2e5b44c50b9809a19321ee0d0c77db (diff)
openssl: BoringSSL doesn't have CONF_modules_free
-rw-r--r--lib/vtls/openssl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index b2520e83d..551c2a88d 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)