From: wessels <> Date: Fri, 25 Oct 1996 03:52:53 +0000 (+0000) Subject: print URL for releaseRequest on unlocked objects X-Git-Tag: SQUID_3_0_PRE1~5599 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97992d17f6573657b2da3c8b673eef44cd9a63eb;p=thirdparty%2Fsquid.git print URL for releaseRequest on unlocked objects --- diff --git a/src/store.cc b/src/store.cc index 56db2d2a40..1697962fa3 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.134 1996/10/24 05:12:43 wessels Exp $ + * $Id: store.cc,v 1.135 1996/10/24 21:52:53 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -565,6 +565,7 @@ storeReleaseRequest(StoreEntry * e) return; if (!storeEntryLocked(e)) { debug_trap("Someone called storeReleaseRequest on an unlocked entry"); + debug(20,0," --> '%s'\n", e->url ? e->url : "NULL URL"); return; } debug(20, 3, "storeReleaseRequest: FOR '%s'\n", e->key ? e->key : e->url);