From: Amos Jeffries Date: Sat, 9 Feb 2013 12:36:13 +0000 (+1300) Subject: Typo in rev.12661 X-Git-Tag: SQUID_3_4_0_1~293 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f45d852d881f7f3eb0c7fab5206e7330f26f4cf;p=thirdparty%2Fsquid.git Typo in rev.12661 --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 7aa6610629..d5b7ab5880 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -291,7 +291,7 @@ update_maxobjsize(void) // Ensure that we do not discard objects which could be stored only in memory. // It is governed by maximum_object_size_in_memory (for now) // TODO: update this to check each in-memory location (SMP and local memory limits differ) - if (ms < statc_cast(Config.Store.maxInMemObjSize)) + if (ms < static_cast(Config.Store.maxInMemObjSize)) ms = Config.Store.maxInMemObjSize; store_maxobjsize = ms;