From: hno <> Date: Fri, 6 Apr 2001 07:49:58 +0000 (+0000) Subject: checklist->conn needs to be unlocked even if ident is not enabled. This X-Git-Tag: SQUID_3_0_PRE1~1552 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d81c17ba4b7323ce9aac79bf5bd7f7fb20c10eb3;p=thirdparty%2Fsquid.git checklist->conn needs to be unlocked even if ident is not enabled. This because it is also used by the new proxy_auth model. --- diff --git a/src/acl.cc b/src/acl.cc index f6e5f4b190..dc7bc56576 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.252 2001/03/21 23:41:10 hno Exp $ + * $Id: acl.cc,v 1.253 2001/04/06 01:49:58 hno Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -1831,12 +1831,10 @@ aclChecklistFree(aclCheck_t * checklist) if (checklist->request) requestUnlink(checklist->request); checklist->request = NULL; -#if USE_IDENT if (checklist->conn) { cbdataUnlock(checklist->conn); checklist->conn = NULL; } -#endif cbdataFree(checklist); }