From: Daniel Stenberg Date: Mon, 28 May 2001 15:31:12 +0000 (+0000) Subject: adjusted the global_init() call to pass the new flag argument too X-Git-Tag: curl-7_8-pre2~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec340e3e3387a470e26be1e883e5a736d768fbf6;p=thirdparty%2Fcurl.git adjusted the global_init() call to pass the new flag argument too --- diff --git a/src/main.c b/src/main.c index d2cc1dcb06..05921247da 100644 --- a/src/main.c +++ b/src/main.c @@ -179,7 +179,7 @@ static CURLcode win32_init(void) { return CURLE_OK; } */ CURLcode main_init(void) { - curl_global_init(); + curl_global_init(0); return win32_init(); }