From: wessels <> Date: Tue, 1 Feb 2000 12:17:58 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~2068 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b83491e7abe0a3aaba6f293c0cc3505752b3a936;p=thirdparty%2Fsquid.git DW: - Sigh, looks like storeLateRelease never worked like it was supposed to because we never set RELEASE_REQUEST for those entries. --- diff --git a/src/store.cc b/src/store.cc index e3fc9ad26a..c4c21d8932 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.512 2000/01/14 17:34:49 wessels Exp $ + * $Id: store.cc,v 1.513 2000/02/01 05:17:58 wessels Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -969,6 +969,7 @@ storeRelease(StoreEntry * e) * we'll just call storeUnlockObject() on these. */ e->lock_count++; + EBIT_SET(e->flags, RELEASE_REQUEST); stackPush(&LateReleaseStack, e); return; }