summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@irssi.org>2010-01-31 00:15:25 +0000
committerjilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564>2010-01-31 00:15:25 +0000
commitefd60c2c51861a31e3a6b009a2f69f44fc4802b4 (patch)
treeb867db78f7833d9e9ce2400ef01e33ce9c5d98e1
parent532e3f5d190a28b1b7e79a251f1754bed61047ca (diff)
downloadirssi-efd60c2c51861a31e3a6b009a2f69f44fc4802b4.zip
Call OpenSSL_add_all_algorithms(), may be needed to verify SHA256 certs with certain versions of OpenSSL.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5108 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--src/core/network-openssl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c
index f41789f1..55f5667a 100644
--- a/src/core/network-openssl.c
+++ b/src/core/network-openssl.c
@@ -374,6 +374,7 @@ static gboolean irssi_ssl_init(void)
{
SSL_library_init();
SSL_load_error_strings();
+ OpenSSL_add_all_algorithms();
ssl_inited = TRUE;
return TRUE;