]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
the splay_userauth patch was only partially complete on ident.
authorhno <>
Mon, 8 Jan 2001 02:42:00 +0000 (02:42 +0000)
committerhno <>
Mon, 8 Jan 2001 02:42:00 +0000 (02:42 +0000)
src/acl.cc

index a3b167de1829c8e13ee3f05e74fd19d606239397..97dc5af94093e21eb4a2d7453693b0b25356602a 100644 (file)
@@ -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);