From: wessels <> Date: Thu, 12 Sep 1996 04:39:01 +0000 (+0000) Subject: parse deny_info X-Git-Tag: SQUID_3_0_PRE1~5839 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea1b5bd827be29fc6857ddc200c3175828ef5a3e;p=thirdparty%2Fsquid.git parse deny_info --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 00d32c5340..71cb5066e7 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_cf.cc,v 1.83 1996/09/05 19:02:51 wessels Exp $ + * $Id: cache_cf.cc,v 1.84 1996/09/11 22:39:01 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -1048,6 +1048,7 @@ int parseConfigFile(file_name) configFreeMemory(); configSetFactoryDefaults(); aclDestroyAcls(); + aclDestroyDenyInfoList(&DenyInfoList); aclDestroyAccessList(&HTTPAccessList); aclDestroyAccessList(&ICPAccessList); @@ -1138,6 +1139,9 @@ int parseConfigFile(file_name) else if (!strcmp(token, "acl")) aclParseAclLine(); + else if (!strcmp(token, "deny_info")) + aclParseDenyInfoLine(&DenyInfoList); + else if (!strcmp(token, "http_access")) aclParseAccessLine(&HTTPAccessList);