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

now uses CURL_GLOBAL_DEFAULT

This commit is contained in:
Daniel Stenberg 2001-05-30 08:01:09 +00:00
parent b541537c66
commit ab449cce73

View File

@ -179,7 +179,7 @@ static CURLcode win32_init(void) { return CURLE_OK; }
*/ */
CURLcode main_init(void) CURLcode main_init(void)
{ {
curl_global_init(0); curl_global_init(CURL_GLOBAL_DEFAULT);
return win32_init(); return win32_init();
} }