diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 15:31:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 15:31:12 +0000 |
commit | ec340e3e3387a470e26be1e883e5a736d768fbf6 (patch) | |
tree | 8ad67c2882d864d8d77a0db8fba8d3475927cb2e /src | |
parent | f44f512f243e6f0d19aa0a1468b84b67db7cb2f4 (diff) |
adjusted the global_init() call to pass the new flag argument too
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index d2cc1dcb0..05921247d 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(); } |