From ef6dfdc7fdb28845706ff98b36a2d294cfc0a1a1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 20 Nov 2007 22:59:10 +0000 Subject: remove the unconditional enabling of cookies if you set a share to use! --- lib/url.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'lib/url.c') diff --git a/lib/url.c b/lib/url.c index 5d8d042ed..7fee3daff 100644 --- a/lib/url.c +++ b/lib/url.c @@ -354,7 +354,7 @@ static void flush_cookies(struct SessionHandle *data, int cleanup) Curl_cookie_loadfiles(data); } - /* we have a "destination" for all the cookies to get dumped to */ + /* if we have a destination file for all the cookies to get dumped to */ if(Curl_cookie_output(data->cookies, data->set.str[STRING_COOKIEJAR])) infof(data, "WARNING: failed to save cookies in %s\n", data->set.str[STRING_COOKIEJAR]); @@ -1184,7 +1184,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, if(!cl) return CURLE_OUT_OF_MEMORY; - data->change.cookielist = cl; + data->change.cookielist = cl; /* store the list for later use */ } break; @@ -1854,17 +1854,13 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, /* use shared cookie list, first free own one if any */ if(data->cookies) Curl_cookie_cleanup(data->cookies); + /* enable cookies since we now use a share that uses cookies! */ data->cookies = data->share->cookies; } #endif /* CURL_DISABLE_HTTP */ Curl_share_unlock(data, CURL_LOCK_DATA_SHARE); } -#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES) - /* check cookie list is set */ - if(!data->cookies) - data->cookies = Curl_cookie_init(data, NULL, NULL, TRUE ); -#endif /* CURL_DISABLE_HTTP */ /* check for host cache not needed, * it will be done by curl_easy_perform */ } -- cgit v1.2.3