]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bugzilla #297: Ignore no_cache or reload on icons
authorhno <>
Fri, 12 Apr 2002 04:05:53 +0000 (04:05 +0000)
committerhno <>
Fri, 12 Apr 2002 04:05:53 +0000 (04:05 +0000)
src/client_side.cc

index e73afea23c3f25b22b59b1eaa71760c13de089b9..7c3a8ed7e8ff5b4dca9b1bf8d7068a81e0b512d3 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.569 2002/04/06 11:25:46 hno Exp $
+ * $Id: client_side.cc,v 1.570 2002/04/11 22:05:53 hno Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -1825,7 +1825,7 @@ clientProcessRequest2(clientHttpRequest * http)
 {
     request_t *r = http->request;
     StoreEntry *e;
-    if (r->flags.cachable)
+    if (r->flags.cachable || r->flags.internal)
        e = http->entry = storeGetPublicByRequest(r);
     else
        e = http->entry = NULL;