From 7f295939d062eb68a0d341af3605018602b14481 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 31 May 2001 06:06:37 +0000 Subject: 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. --- lib/easy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3