From: wessels <> Date: Sat, 4 Jan 1997 15:35:04 +0000 (+0000) Subject: data->speed overflow bug X-Git-Tag: SQUID_3_0_PRE1~5235 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73ca8e50526cf84a129a6336d68be098f2303700;p=thirdparty%2Fsquid.git data->speed overflow bug --- diff --git a/src/store.cc b/src/store.cc index 6b4d412b93..796a3ef724 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.187 1997/01/03 22:45:51 wessels Exp $ + * $Id: store.cc,v 1.188 1997/01/04 08:35:04 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -1581,7 +1581,7 @@ storeStartRebuildFromDisk(void) /* Start reading the log file */ if (opt_foreground_rebuild) { - data->speed = 1 << 31; + data->speed = 1 << 30; storeDoRebuildFromDisk(data); } else { eventAdd("storeRebuild", storeDoRebuildFromDisk, data, 0);