From: Daniel Stenberg Date: Thu, 31 May 2001 06:06:37 +0000 (+0000) Subject: went back to the version where the flags argument to curl_global_init() X-Git-Tag: curl-7_8~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f295939d062eb68a0d341af3605018602b14481;p=curl went back to the version where the flags argument to curl_global_init() specify exactly what global parts to init. Thanks to Sterling Hughes really for arguing wisely. --- diff --git a/lib/easy.c b/lib/easy.c index a4de38e17..4639bacd2 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -80,7 +80,7 @@ CURLcode curl_global_init(long flags) { - if(!(flags & CURL_GLOBAL_NOT_SSL)) + if(flags & CURL_GLOBAL_SSL) Curl_SSL_init(); return CURLE_OK;