]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW:
authorwessels <>
Fri, 6 Oct 2000 11:42:46 +0000 (11:42 +0000)
committerwessels <>
Fri, 6 Oct 2000 11:42:46 +0000 (11:42 +0000)
 - Evil extra semicolon.

src/net_db.cc

index bf0f53bc2efe7eed01f9cd599837dcbefdd1e191..2516688ec448f161c6dca09c4bc529bbf5209e75 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.147 2000/10/05 14:02:22 wessels Exp $
+ * $Id: net_db.cc,v 1.148 2000/10/06 05:42:46 wessels Exp $
  *
  * DEBUG: section 38    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -466,8 +466,8 @@ netdbReloadState(void)
        memset(&N, '\0', sizeof(netdbEntry));
        q = strtok(t, w_space);
        t = s + 1;
-       if (NULL == q);
-       continue;
+       if (NULL == q)
+           continue;
        if (!safe_inet_addr(q, &addr))
            continue;
        if (netdbLookupAddr(addr) != NULL)      /* no dups! */