]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Typo in rev.12661
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 9 Feb 2013 12:36:13 +0000 (01:36 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 9 Feb 2013 12:36:13 +0000 (01:36 +1300)
src/cache_cf.cc

index 7aa661062935e36c5e2a9815521266b272334b15..d5b7ab588029fde6d5f142c2458f0b2fc27922d6 100644 (file)
@@ -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<int64_t>(Config.Store.maxInMemObjSize))
+    if (ms < static_cast<int64_t>(Config.Store.maxInMemObjSize))
         ms = Config.Store.maxInMemObjSize;
 
     store_maxobjsize = ms;