From: wessels <> Date: Thu, 8 Apr 1999 02:03:48 +0000 (+0000) Subject: missing ACL_SRC_DOM_REGEX and ACL_DST_DOM_REGEX in case statement X-Git-Tag: SQUID_3_0_PRE1~2299 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71eb5c708ec0250a5194378f8f78b05c4eb8c2ea;p=thirdparty%2Fsquid.git missing ACL_SRC_DOM_REGEX and ACL_DST_DOM_REGEX in case statement for destroying ACL entries. caused fall throught to default case and assert(0); --- diff --git a/src/acl.cc b/src/acl.cc index a976c9d9ac..875f8280c4 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -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;