]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
binary tree fixes from 1.1.18
authorwessels <>
Tue, 4 Nov 1997 03:05:36 +0000 (03:05 +0000)
committerwessels <>
Tue, 4 Nov 1997 03:05:36 +0000 (03:05 +0000)
src/acl.cc

index c741825788d8cec7ac92dcc31d997ee37de73d9b..aeb23dca89b659e35c4e94ec1700811f22d18279 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: acl.cc,v 1.111 1997/10/26 02:35:27 wessels Exp $
+ * $Id: acl.cc,v 1.112 1997/11/03 20:05:36 wessels Exp $
  *
  * DEBUG: section 28    Access Control
  * AUTHOR: Duane Wessels
@@ -867,8 +867,8 @@ aclMatchIp(void *dataptr, struct in_addr c)
 static int
 aclMatchIp(void *dataptr, struct in_addr c)
 {
-    tree **data = dataptr;
-    if (tree_srch(data, bintreeIpNetworkCompare, &c)) {
+    tree ***data = dataptr;
+    if (tree_srch(*data, bintreeIpNetworkCompare, &c)) {
        debug(28, 3) ("aclMatchIp: '%s' found\n", inet_ntoa(c));
        return 1;
     }