From: Timo Sirainen Date: Thu, 4 Nov 2010 16:37:49 +0000 (+0000) Subject: ssl: Call OpenSSL_add_all_algorithms() to make some OpenSSL versions happy. X-Git-Tag: 2.0.7~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a640b061437e19f502de679cab713bdaab7dcc9b;p=thirdparty%2Fdovecot%2Fcore.git ssl: Call OpenSSL_add_all_algorithms() to make some OpenSSL versions happy. --- diff --git a/src/login-common/ssl-proxy-openssl.c b/src/login-common/ssl-proxy-openssl.c index aeabe5b559..f5b0d4f31c 100644 --- a/src/login-common/ssl-proxy-openssl.c +++ b/src/login-common/ssl-proxy-openssl.c @@ -1170,6 +1170,7 @@ void ssl_proxy_init(void) SSL_library_init(); SSL_load_error_strings(); + OpenSSL_add_all_algorithms(); extdata_index = SSL_get_ex_new_index(0, dovecot, NULL, NULL, NULL);