From: wessels <> Date: Sat, 21 Apr 2007 19:21:58 +0000 (+0000) Subject: Bugfix from StoreEntry method conversion: hashInsert is now a method X-Git-Tag: SQUID_3_0_PRE6~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3fba691e3c31e7f5c767cecfc81aa6fc10e09cf6;p=thirdparty%2Fsquid.git Bugfix from StoreEntry method conversion: hashInsert is now a method --- diff --git a/src/fs/coss/store_dir_coss.cc b/src/fs/coss/store_dir_coss.cc index 8a35cf4472..5a8453aa7c 100644 --- a/src/fs/coss/store_dir_coss.cc +++ b/src/fs/coss/store_dir_coss.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir_coss.cc,v 1.70 2007/04/21 07:14:16 wessels Exp $ + * $Id: store_dir_coss.cc,v 1.71 2007/04/21 13:21:58 wessels Exp $ * vim: set et : * * DEBUG: section 47 Store COSS Directory Routines @@ -550,7 +550,7 @@ storeCossAddDiskRestore(CossSwapDir * SD, const cache_key * key, EBIT_CLR(e->flags, KEY_PRIVATE); e->ping_status = PING_NONE; EBIT_CLR(e->flags, ENTRY_VALIDATED); - hashInsert(key); /* do it after we clear KEY_PRIVATE */ + e->hashInsert(key); /* do it after we clear KEY_PRIVATE */ storeCossAdd(SD, e); assert(e->swap_filen >= 0); return e;