]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-ssl-iostream: Compiler fix to previous commit
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Wed, 29 Jun 2016 22:27:37 +0000 (01:27 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Wed, 29 Jun 2016 22:27:37 +0000 (01:27 +0300)
src/lib-ssl-iostream/dovecot-openssl-common.c

index 7d1ebf4f825fa32ff30f027f7e612c111c1d2961..f4dde3233b242713c50ecdb4a9640f660886bcaf 100644 (file)
@@ -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();