]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove bogus debug with multiple inet_ntoa() calls
authorwessels <>
Thu, 23 Jan 1997 00:01:23 +0000 (00:01 +0000)
committerwessels <>
Thu, 23 Jan 1997 00:01:23 +0000 (00:01 +0000)
src/cache_cf.cc

index 496b4e5823f4c879fea05d2551b496a50d7c933e..948dfef59f6fe569bc46a83ade48b3020b917ef8 100644 (file)
@@ -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;
     }