diff options
author | corvid <devnull@localhost> | 2015-05-31 02:17:35 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-05-31 02:17:35 +0000 |
commit | d654825f7fecb9c081b5a12fb7d288ca6dddbfd1 (patch) | |
tree | 53ebc9ca2e585f663c674f0472660c7d51cf160a /src/cache.c | |
parent | f8c3e19ac18075a45c48a5fc36cd2499defaf7e1 (diff) |
rm MSG
Diffstat (limited to 'src/cache.c')
-rw-r--r-- | src/cache.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cache.c b/src/cache.c index 9ff1cf14..d8f1a123 100644 --- a/src/cache.c +++ b/src/cache.c @@ -756,6 +756,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); @@ -764,10 +765,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); |