aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-11-20 22:59:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-11-20 22:59:10 +0000
commitef6dfdc7fdb28845706ff98b36a2d294cfc0a1a1 (patch)
tree5313cf31765f7dac9f952d4399148062361bfca9 /lib/url.c
parentf3b85ef79dc51b12da2604d88d734ed4e97e1d96 (diff)
remove the unconditional enabling of cookies if you set a share to use!
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c10
1 files changed, 3 insertions, 7 deletions
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 */
}