From: wessels <> Date: Thu, 19 Apr 2007 22:14:53 +0000 (+0000) Subject: Author: Tsantilas Christos X-Git-Tag: SQUID_3_0_PRE6~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b0cd2cd9d328265a896d1e6b8009731f2c08781;p=thirdparty%2Fsquid.git Author: Tsantilas Christos Short StoreEntry::swapOut() does not compile when SIZEOF_OFF_T==4 My change to make a StoreEntry::swapOut() method missed a case inside #ifdef SIZEOF_OFF_T==4. --- diff --git a/src/store_swapout.cc b/src/store_swapout.cc index 2774313010..3e1b43abd4 100644 --- a/src/store_swapout.cc +++ b/src/store_swapout.cc @@ -1,6 +1,6 @@ /* - * $Id: store_swapout.cc,v 1.110 2007/04/17 23:05:17 wessels Exp $ + * $Id: store_swapout.cc,v 1.111 2007/04/19 16:14:53 wessels Exp $ * * DEBUG: section 20 Storage Manager Swapout Functions * AUTHOR: Duane Wessels @@ -234,8 +234,8 @@ StoreEntry::swapOut() #if SIZEOF_OFF_T == 4 if (mem_obj->endOffset() > 0x7FFF0000) { - debug(20, 0) ("WARNING: preventing off_t overflow for %s\n", storeUrl(e)); - storeAbort(e); + debug(20, 0) ("WARNING: preventing off_t overflow for %s\n", storeUrl(this)); + storeAbort(this); return; }