aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2015-05-31 02:17:35 +0000
committercorvid <devnull@localhost>2015-05-31 02:17:35 +0000
commit8fa364fcdaf00545222059bc7a40f0873f743489 (patch)
tree9e50bde1bed2059035933a6258119a079b015b1d /src
parent247c80aa5e68567c87f49e647ef8e496163d77d9 (diff)
rm MSG
Diffstat (limited to 'src')
-rw-r--r--src/cache.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cache.c b/src/cache.c
index 14e862b5..42573d10 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -751,6 +751,7 @@ static void Cache_parse_header(CacheEntry_t *entry)
if (!web->requester ||
a_Url_same_organization(entry->Url, web->requester)) {
+ /* If cookies are third party, don't even consider them. */
char *server_date = Cache_parse_field(header, "Date");
a_Cookies_set(Cookies, entry->Url, server_date);
@@ -759,10 +760,6 @@ static void Cache_parse_header(CacheEntry_t *entry)
}
}
}
- if (i >= dList_length(ClientQueue)) {
- MSG("Cache: cookies not accepted from '%s'\n", URL_STR(entry->Url));
- }
-
for (i = 0; (data = dList_nth_data(Cookies, i)); ++i)
dFree(data);
dList_free(Cookies);