From: wessels <> Date: Tue, 17 Mar 1998 05:26:45 +0000 (+0000) Subject: use aclDumpArpList instead of aclDumpArp X-Git-Tag: SQUID_3_0_PRE1~3825 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cae48a5ca87c0d5610dd45e3842382aef5a08dfc;p=thirdparty%2Fsquid.git use aclDumpArpList instead of aclDumpArp --- diff --git a/src/acl.cc b/src/acl.cc index ff2ac612c6..6b0a7bf299 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.147 1998/03/07 23:43:00 rousskov Exp $ + * $Id: acl.cc,v 1.148 1998/03/16 22:26:45 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -76,7 +76,7 @@ static wordlist *aclDumpUnimplemented(void); static int checkARP(u_long ip, char *eth); static int decode_eth(const char *asc, char *eth); static int aclMatchArp(void *dataptr, struct in_addr c); -static const char *aclDumpArp(acl_arp_data *); +static const char *aclDumpArpList(acl_arp_data *); #endif #if defined(USE_SPLAY_TREE) @@ -2545,7 +2545,7 @@ checkARP(u_long ip, char *eth) } static const char * -aclDumpArp(acl_arp_data * data) +aclDumpArpList(acl_arp_data * data) { wordlist *W = NULL; wordlist **T = &W;