diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-29 07:20:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-29 07:20:31 +0000 |
commit | bfd89c8078332b05b822d5180a983cb5eaff35f2 (patch) | |
tree | 2097c32ad2aeec249426c97b78490534b7974f56 /lib/easy.c | |
parent | 223c48e6b5389ea763305b87dd4486b47a88587e (diff) | |
download | curl-bfd89c8078332b05b822d5180a983cb5eaff35f2.tar.gz |
global_init() takes that flag argument
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c index 2c0520a65..c98727e78 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -78,8 +78,9 @@ #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> -CURLcode curl_global_init(void) +CURLcode curl_global_init(long flags) { + flags = 0; /* not currently used */ Curl_SSL_init(); return CURLE_OK; } |