From 8e012467533c2e3b5cddab5eeb3ce12f918b07ee Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 21 Apr 1998 00:32:46 +0000 Subject: [PATCH] got acl match logic wrong --- src/client_side.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.47.3