mirror of
https://github.com/curl/curl.git
synced 2026-07-22 20:27:17 +03: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:
parent
aa27db6986
commit
7f295939d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue