From: wessels <> Date: Thu, 24 Oct 1996 11:05:20 +0000 (+0000) Subject: Remove deprecated REQ_ACCEL X-Git-Tag: SQUID_3_0_PRE1~5615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e60111c0c39a60731e487b407967f24e1eb2ebd;p=thirdparty%2Fsquid.git Remove deprecated REQ_ACCEL --- diff --git a/src/client_side.cc b/src/client_side.cc index fc48bf23e5..3b4c587dfd 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.48 1996/10/22 04:27:58 wessels Exp $ + * $Id: client_side.cc,v 1.49 1996/10/24 05:05:20 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -142,7 +142,7 @@ clientAccessCheck(icpStateData * icpState, void (*handler) (icpStateData *, int) icpState->aclHandler = handler; if (httpd_accel_mode && !Config.Accel.withProxy && r->protocol != PROTO_CACHEOBJ) { /* this cache is an httpd accelerator ONLY */ - if (!BIT_TEST(icpState->request->flags, REQ_ACCEL)) + if (icpState->accel == 0) answer = 0; } else { answer = aclCheck(HTTPAccessList, ch);