From: wessels <> Date: Tue, 21 Apr 1998 00:32:46 +0000 (+0000) Subject: got acl match logic wrong X-Git-Tag: SQUID_3_0_PRE1~3487 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e012467533c2e3b5cddab5eeb3ce12f918b07ee;p=thirdparty%2Fsquid.git got acl match logic wrong --- diff --git a/src/client_side.cc b/src/client_side.cc index 76b1e5902e..c26a130774 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.279 1998/04/17 04:25:35 wessels Exp $ + * $Id: client_side.cc,v 1.280 1998/04/20 18:32:46 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -847,7 +847,7 @@ clientCachable(clientHttpRequest * http) */ ch.src_addr = http->conn->peer.sin_addr; ch.request = http->request; - if (0 == aclCheckFast(Config.accessList.noCache, &ch)) + if (aclCheckFast(Config.accessList.noCache, &ch)) return 0; if (Config.cache_stop_relist) if (aclMatchRegex(Config.cache_stop_relist, url))