]> granicus.if.org Git - curl/commitdiff
went back to the version where the flags argument to curl_global_init()
authorDaniel Stenberg <daniel@haxx.se>
Thu, 31 May 2001 06:06:37 +0000 (06:06 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 31 May 2001 06:06:37 +0000 (06:06 +0000)
specify exactly what global parts to init. Thanks to Sterling Hughes really
for arguing wisely.

lib/easy.c

index a4de38e17f25f8d66bac61c9118eeabab140beb8..4639bacd27863b93d15a1211e8d116557c2d9f90 100644 (file)
@@ -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;