From: wessels <> Date: Mon, 25 Aug 1997 08:26:04 +0000 (+0000) Subject: return a message when NETDB support isn't compiled in. X-Git-Tag: SQUID_3_0_PRE1~4821 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8391077e339148aa62085740cd503a1e2be02a6;p=thirdparty%2Fsquid.git return a message when NETDB support isn't compiled in. --- diff --git a/src/net_db.cc b/src/net_db.cc index 8dbc2184a0..a391b1bb3d 100644 --- a/src/net_db.cc +++ b/src/net_db.cc @@ -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 }