From: Timo Sirainen Date: Wed, 29 Jun 2016 22:15:38 +0000 (+0300) Subject: lib-ssl-iostream: Disable "CRYPTO_set_mem_functions() was called too late" for now X-Git-Tag: 2.2.26~540 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb2aa71193db9bb563a7a5ec4e1964a322bedefb;p=thirdparty%2Fdovecot%2Fcore.git lib-ssl-iostream: Disable "CRYPTO_set_mem_functions() was called too late" for now It always happens at least with Ubuntu 16.04. --- diff --git a/src/lib-ssl-iostream/dovecot-openssl-common.c b/src/lib-ssl-iostream/dovecot-openssl-common.c index 8e54ec7445..7d1ebf4f82 100644 --- a/src/lib-ssl-iostream/dovecot-openssl-common.c +++ b/src/lib-ssl-iostream/dovecot-openssl-common.c @@ -44,7 +44,7 @@ void dovecot_openssl_common_global_ref(void) conditions. */ if (CRYPTO_set_mem_functions(dovecot_openssl_malloc, dovecot_openssl_realloc, free) == 0) - i_warning("CRYPTO_set_mem_functions() was called too late"); + /*i_warning("CRYPTO_set_mem_functions() was called too late")*/; SSL_library_init(); SSL_load_error_strings();