From: wessels <> Date: Fri, 8 Nov 1996 03:55:14 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~5502 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44f78c2445d47c3320bf2e3094bfb7af103c0e5c;p=thirdparty%2Fsquid.git compiler --- diff --git a/src/store.cc b/src/store.cc index a884050f51..cd6870675c 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.156 1996/11/07 20:52:52 wessels Exp $ + * $Id: store.cc,v 1.157 1996/11/07 20:55:14 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -2818,7 +2818,7 @@ storeEntryValidToSend(StoreEntry * e) if (BIT_TEST(e->flag, RELEASE_REQUEST)) return 0; if (BIT_TEST(e->flag, ENTRY_NEGCACHED)) - if (entry->expires <= squid_curtime) + if (e->expires <= squid_curtime) return 0; if (e->store_status == STORE_ABORTED) return 0;