From 41458ee17f8860ec85898ffb81186d2736a5c1aa Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 19 Jan 2007 10:28:42 +0000 Subject: [PATCH] Fixed bug #827: Using SSL fails on Debian etch. Fixed by Using SSL_library_init() rather than SSLeay_add_all_algorithms(). Works fine with libssl0.9.6 (woody) and libssl0.9.8(etch). --- src/tcpip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tcpip.c b/src/tcpip.c index e350cdf..8ffdfe8 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: tcpip.c,v 1.33 2007-01-03 08:42:15 adam Exp $ + * $Id: tcpip.c,v 1.34 2007-01-19 10:28:42 adam Exp $ */ /** * \file tcpip.c @@ -494,8 +494,8 @@ int tcpip_rcvconnect(COMSTACK h) #if HAVE_OPENSSL_SSL_H if (h->type == ssl_type && !sp->ctx) { + SSL_library_init(); SSL_load_error_strings(); - SSLeay_add_all_algorithms(); sp->ctx = sp->ctx_alloc = SSL_CTX_new (SSLv23_method()); if (!sp->ctx) @@ -586,8 +586,8 @@ static int tcpip_bind(COMSTACK h, void *address, int mode) #if HAVE_OPENSSL_SSL_H if (h->type == ssl_type && !sp->ctx) { + SSL_library_init(); SSL_load_error_strings(); - SSLeay_add_all_algorithms(); sp->ctx = sp->ctx_alloc = SSL_CTX_new (SSLv23_method()); if (!sp->ctx) -- 1.7.10.4