1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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.
This commit is contained in:
Daniel Stenberg 2001-05-31 06:06:37 +00:00
parent aa27db6986
commit 7f295939d0

View 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;