From: wessels <> Date: Thu, 23 Jan 1997 00:01:23 +0000 (+0000) Subject: remove bogus debug with multiple inet_ntoa() calls X-Git-Tag: SQUID_3_0_PRE1~5177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0188eadca91cb62b14b6394a83f3ddf337387e53;p=thirdparty%2Fsquid.git remove bogus debug with multiple inet_ntoa() calls --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 496b4e5823..948dfef59f 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_cf.cc,v 1.166 1997/01/21 02:53:34 wessels Exp $ + * $Id: cache_cf.cc,v 1.167 1997/01/22 17:01:23 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -314,10 +314,6 @@ ip_access_check(struct in_addr address, const ip_acl * list) debug(3, 5, "ip_access_check: using %s\n", inet_ntoa(naddr)); for (p = list; p; p = p->next) { - debug(3, 5, "ip_access_check: %s vs %s/%s\n", - inet_ntoa(naddr), - inet_ntoa(p->addr), - inet_ntoa(p->mask)); if (ip_acl_match(naddr, p)) return p->access; }