From: hno <> Date: Wed, 3 May 2000 04:32:37 +0000 (+0000) Subject: Fixed some patch merge errors X-Git-Tag: SQUID_3_0_PRE1~1994 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=364a0f3d76af756536b50a642832a52a6e2bcfe8;p=thirdparty%2Fsquid.git Fixed some patch merge errors --- diff --git a/src/client_side.cc b/src/client_side.cc index 11f1641cdd..8c7d97dd6a 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.478 2000/05/02 20:24:44 hno Exp $ + * $Id: client_side.cc,v 1.479 2000/05/02 22:32:37 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -142,7 +142,7 @@ clientAclChecklistCreate(const acl_access *acl, const clientHttpRequest *http) { aclCheck_t *ch; ConnStateData *conn = http->conn; - ch = aclChecklistCreate(Config.accessList.http, + ch = aclChecklistCreate(acl, http->request, conn->ident); #if USE_IDENT @@ -161,7 +161,7 @@ clientAccessCheck(void *data) { clientHttpRequest *http = data; if (checkAccelOnly(http)) { - clientAccessCheckDone(0, http); + clientAccessCheckDone(ACCESS_ALLOWED, http); return; } http->acl_checklist = clientAclChecklistCreate(Config.accessList.http, http);