From: Daniel Stenberg Date: Thu, 10 Feb 2005 07:45:08 +0000 (+0000) Subject: init fix for non-SSL builds X-Git-Tag: curl-7_13_1~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=446b9467dabb5ffeabd37a7c56fe1cc9049578b5;p=curl init fix for non-SSL builds --- diff --git a/lib/ssluse.c b/lib/ssluse.c index b93540c0b..0a6868d51 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -530,7 +530,7 @@ int Curl_SSL_init(void) { #ifdef USE_SSLEAY /* make sure this is only done once */ - if(0 != init_ssl) + if(init_ssl) return 1; #ifdef HAVE_ENGINE_LOAD_BUILTIN_ENGINES @@ -543,12 +543,13 @@ int Curl_SSL_init(void) /* Setup all the global SSL stuff */ if (!SSLeay_add_ssl_algorithms()) return 0; + + init_ssl++; /* never again */ + #else /* SSL disabled, do nothing */ #endif - init_ssl++; /* never again */ - return 1; }