]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
checklist->conn needs to be unlocked even if ident is not enabled. This
authorhno <>
Fri, 6 Apr 2001 07:49:58 +0000 (07:49 +0000)
committerhno <>
Fri, 6 Apr 2001 07:49:58 +0000 (07:49 +0000)
because it is also used by the new proxy_auth model.

src/acl.cc

index f6e5f4b1909b00dcce072fb788652267b607b95e..dc7bc56576c6eaa0778671314f13b95c44ef35dd 100644 (file)
@@ -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);
 }