From: glenn <> Date: Thu, 26 Nov 1998 08:15:49 +0000 (+0000) Subject: snmp_community bug fix X-Git-Tag: SQUID_3_0_PRE1~2495 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c37f54d43cd55a2f773cd3cbba9b49e58138662;p=thirdparty%2Fsquid.git snmp_community bug fix --- diff --git a/src/acl.cc b/src/acl.cc index aba8dba1ca..e9732462e1 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.188 1998/11/12 06:41:36 wessels Exp $ + * $Id: acl.cc,v 1.189 1998/11/26 01:15:49 glenn Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -708,6 +708,11 @@ aclParseAclLine(acl ** head) assert(proxy_auth_cache); } break; +#if SQUID_SNMP + case ACL_SNMP_COMMUNITY: + aclParseWordList(&A->data); + break; +#endif #if USE_ARP_ACL case ACL_SRC_ARP: aclParseArpList(&A->data);