global_init() takes that flag argument

This commit is contained in:
Daniel Stenberg 2001-05-29 07:20:31 +00:00
parent 223c48e6b5
commit bfd89c8078
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}