changeset 9628:e388554e373f HEAD

ssl: Call OpenSSL_add_all_algorithms() to make some OpenSSL versions happy.
author Timo Sirainen <tss@iki.fi>
date Thu, 04 Nov 2010 16:37:49 +0000
parents 8c8bde0f9120
children bc2972a83265
files src/login-common/ssl-proxy-openssl.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/login-common/ssl-proxy-openssl.c	Tue Nov 02 19:23:37 2010 +0000
+++ b/src/login-common/ssl-proxy-openssl.c	Thu Nov 04 16:37:49 2010 +0000
@@ -947,6 +947,7 @@
 
 	SSL_library_init();
 	SSL_load_error_strings();
+	OpenSSL_add_all_algorithms();
 
 	extdata_index = SSL_get_ex_new_index(0, dovecot, NULL, NULL, NULL);
 	ssl_proxy_init_server(certfile, keyfile);