From 1edc4e2e9b58c9ec9fe830eb7c991946084911b0 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 27 Nov 2000 15:17:40 +0000 Subject: [PATCH] Using SSLeay_add_all_algorithms instead of OpenSSL_add_all_algorithms. --- comstack/tcpip.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/comstack/tcpip.c b/comstack/tcpip.c index c6076b0..b467f20 100644 --- a/comstack/tcpip.c +++ b/comstack/tcpip.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: tcpip.c,v $ - * Revision 1.34 2000-11-23 10:58:32 adam + * Revision 1.35 2000-11-27 15:17:40 adam + * Using SSLeay_add_all_algorithms instead of OpenSSL_add_all_algorithms. + * + * Revision 1.34 2000/11/23 10:58:32 adam * SSL comstack support. Separate POSIX thread support library. * * Revision 1.33 2000/09/04 08:27:11 adam @@ -375,7 +378,7 @@ COMSTACK ssl_type(int s, int blocking, int protocol, void *vp) else { SSL_load_error_strings(); - OpenSSL_add_all_algorithms(); + SSLeay_add_all_algorithms(); state->ctx = state->ctx_alloc = SSL_CTX_new (SSLv23_method()); if (!state->ctx) -- 1.7.10.4