From c22038bed87c471e9eab71ef189c9013cf227294 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 8 Dec 2011 22:44:19 +0000 Subject: Fix bogus cache validation decision svn path=/trunk/netsurf/; revision=13261 --- content/llcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content') diff --git a/content/llcache.c b/content/llcache.c index 71de3a070..503fea40c 100644 --- a/content/llcache.c +++ b/content/llcache.c @@ -1872,7 +1872,7 @@ void llcache_fetch_callback(const fetch_msg *msg, void *p) */ long http_code = fetch_http_code(object->fetch.fetch); - if ((http_code != 200 && http_code != 203) && + if ((http_code != 200 && http_code != 203) || (object->has_query && (object->cache.max_age == INVALID_AGE && object->cache.expires == 0))) { -- cgit v1.2.3