]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
hash_join() is now void
authorwessels <>
Fri, 28 Nov 1997 15:19:56 +0000 (15:19 +0000)
committerwessels <>
Fri, 28 Nov 1997 15:19:56 +0000 (15:19 +0000)
src/fqdncache.cc

index bea0365b34b4c6262ba71b50502ebfbb2f54f4e7..75cf0c20f8e8012635b7fbe06a0e7ed5a69fa4f8 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: fqdncache.cc,v 1.68 1997/11/23 06:52:38 wessels Exp $
+ * $Id: fqdncache.cc,v 1.69 1997/11/28 08:19:56 wessels Exp $
  *
  * DEBUG: section 35    FQDN Cache
  * AUTHOR: Harvest Derived
@@ -366,11 +366,8 @@ fqdncache_create(const char *name)
 static void
 fqdncache_add_to_hash(fqdncache_entry * f)
 {
-    if (hash_join(fqdn_table, (hash_link *) f)) {
-       debug(35, 1) ("fqdncache_add_to_hash: Cannot add %s (%p) to hash table %d.\n",
-           f->name, f, fqdn_table);
-    }
     debug(35, 5) ("fqdncache_add_to_hash: name <%s>\n", f->name);
+    hash_join(fqdn_table, (hash_link *) f);
 }
 
 static void