From: hno <> Date: Fri, 12 Apr 2002 04:05:53 +0000 (+0000) Subject: Bugzilla #297: Ignore no_cache or reload on icons X-Git-Tag: SQUID_3_0_PRE1~1096 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=800c22d69591a257b5a8a56ab9dc1f5bed454b2f;p=thirdparty%2Fsquid.git Bugzilla #297: Ignore no_cache or reload on icons --- diff --git a/src/client_side.cc b/src/client_side.cc index e73afea23c..7c3a8ed7e8 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -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;