]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
missing ACL_SRC_DOM_REGEX and ACL_DST_DOM_REGEX in case statement
authorwessels <>
Thu, 8 Apr 1999 02:03:48 +0000 (02:03 +0000)
committerwessels <>
Thu, 8 Apr 1999 02:03:48 +0000 (02:03 +0000)
for destroying ACL entries.  caused fall throught to default case
and assert(0);

src/acl.cc

index a976c9d9ac57fd205d9238aa02eb232e96a88248..875f8280c472a377c7966d22d6dcd88707a303a2 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: acl.cc,v 1.198 1999/04/07 19:52:14 wessels Exp $
+ * $Id: acl.cc,v 1.199 1999/04/07 20:03:48 wessels Exp $
  *
  * DEBUG: section 28    Access Control
  * AUTHOR: Duane Wessels
@@ -1786,6 +1786,8 @@ aclDestroyAcls(acl ** head)
            break;
        case ACL_URL_REGEX:
        case ACL_URLPATH_REGEX:
+       case ACL_SRC_DOM_REGEX:
+       case ACL_DST_DOM_REGEX:
        case ACL_BROWSER:
            aclDestroyRegexList(a->data);
            break;