]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
return a message when NETDB support isn't compiled in.
authorwessels <>
Mon, 25 Aug 1997 08:26:04 +0000 (08:26 +0000)
committerwessels <>
Mon, 25 Aug 1997 08:26:04 +0000 (08:26 +0000)
src/net_db.cc

index 8dbc2184a0c69fa4d13c79c0fbfaf3bc88aa9154..a391b1bb3dff75c4ab150c512a041e3b70ca821f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.46 1997/08/10 04:42:42 wessels Exp $
+ * $Id: net_db.cc,v 1.47 1997/08/25 02:26:04 wessels Exp $
  *
  * DEBUG: section 37    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -595,6 +595,9 @@ netdbDump(StoreEntry * sentry)
     }
     storeAppendPrintf(sentry, close_bracket);
     xfree(list);
+#else
+    storeAppendPrintf(sentry,
+       "NETDB support not compiled into this Squid cache.\n");
 #endif
 }