From: Timo Sirainen Date: Wed, 29 Jun 2016 22:27:37 +0000 (+0300) Subject: lib-ssl-iostream: Compiler fix to previous commit X-Git-Tag: 2.2.26~539 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c9f9b0c31693bfd0484e7b815d058e0de523a915;p=thirdparty%2Fdovecot%2Fcore.git lib-ssl-iostream: Compiler fix to previous commit --- diff --git a/src/lib-ssl-iostream/dovecot-openssl-common.c b/src/lib-ssl-iostream/dovecot-openssl-common.c index 7d1ebf4f82..f4dde3233b 100644 --- a/src/lib-ssl-iostream/dovecot-openssl-common.c +++ b/src/lib-ssl-iostream/dovecot-openssl-common.c @@ -43,8 +43,9 @@ void dovecot_openssl_common_global_ref(void) returning NULL. this avoids random failures on out-of-memory conditions. */ if (CRYPTO_set_mem_functions(dovecot_openssl_malloc, - dovecot_openssl_realloc, free) == 0) - /*i_warning("CRYPTO_set_mem_functions() was called too late")*/; + dovecot_openssl_realloc, free) == 0) { + /*i_warning("CRYPTO_set_mem_functions() was called too late");*/ + } SSL_library_init(); SSL_load_error_strings();