diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 09:56:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 09:56:06 +0000 |
commit | 96e217b49628a7dd19ad4be66b1842dcf0940309 (patch) | |
tree | 35ab1caf61deeaab7eb7c1171aa91652d68de00a /lib/share.c | |
parent | 2dd1518d630e3fa0857d3086c75948bf26f6c833 (diff) | |
download | curl-96e217b49628a7dd19ad4be66b1842dcf0940309.tar.gz |
the new cookie functions that require 'data' passed in
Diffstat (limited to 'lib/share.c')
-rw-r--r-- | lib/share.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/share.c b/lib/share.c index 37acef195..d883ff0de 100644 --- a/lib/share.c +++ b/lib/share.c @@ -79,7 +79,7 @@ curl_share_setopt(CURLSH *sh, CURLSHoption option, ...) case CURL_LOCK_DATA_COOKIE: if (!share->cookies) { - share->cookies = Curl_cookie_init( NULL, NULL, TRUE ); + share->cookies = Curl_cookie_init(NULL, NULL, NULL, TRUE ); } break; |