Commit 7f295939 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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.
parent aa27db69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;