From: hno <> Date: Mon, 8 Jan 2001 02:42:00 +0000 (+0000) Subject: the splay_userauth patch was only partially complete on ident. X-Git-Tag: SQUID_3_0_PRE1~1676 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7361b289a3072c28db535eb182cf08bd7dac5fd;p=thirdparty%2Fsquid.git the splay_userauth patch was only partially complete on ident. --- diff --git a/src/acl.cc b/src/acl.cc index a3b167de18..97dc5af940 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.232 2001/01/07 14:47:17 hno Exp $ + * $Id: acl.cc,v 1.233 2001/01/07 19:42:00 hno Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -775,7 +775,7 @@ aclParseAclLine(acl ** head) break; #if USE_IDENT case ACL_IDENT: - aclParseWordList(&A->data); + aclParseProxyAuthList(&A->data); break; case ACL_IDENT_REGEX: aclParseRegexList(&A->data); @@ -1983,7 +1983,7 @@ aclDestroyAcls(acl ** head) #endif #if USE_IDENT case ACL_IDENT: - wordlistDestroy((wordlist **) & a->data); + aclFreeProxyAuthData(a->data); break; #endif case ACL_PROXY_AUTH: @@ -2330,7 +2330,7 @@ aclDumpGeneric(const acl * a) #endif #if USE_IDENT case ACL_IDENT: - return wordlistDup(a->data); + return aclDumpProxyAuthList(a->data); break; case ACL_IDENT_REGEX: return aclDumpRegexList(a->data);