]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove restrictions on hot_vm_factor
authorwessels <>
Sat, 24 Aug 1996 03:15:45 +0000 (03:15 +0000)
committerwessels <>
Sat, 24 Aug 1996 03:15:45 +0000 (03:15 +0000)
src/cache_cf.cc

index 79e56fa0dfca557ba781c5ca936a0cb245b54679..e1a8dfb49fbdc5059065b68b3fdfcf97e8614b65 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: cache_cf.cc,v 1.69 1996/08/20 15:43:41 wessels Exp $
+ * $Id: cache_cf.cc,v 1.70 1996/08/23 21:15:45 wessels Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -1442,15 +1442,4 @@ static void configDoConfigure()
        getMyHostname(), Config.Port.http);
     if (Config.errHtmlText == NULL)
        Config.errHtmlText = xstrdup("");
-
-#if !ALLOW_HOT_CACHE
-    if (!httpd_accel_mode || Config.Accel.withProxy) {
-       /* Not running strict httpd_accel--force hot_vm_factor to be 0 */
-       if (Config.hotVmFactor != 0.0) {
-           printf("WARNING: Non-zero hot_vm_factor not allowed unless running only\n");
-           printf("         in httpd_accel mode.  Setting hot_vm_factor to 0.\n");
-           Config.hotVmFactor = 0.0;
-       }
-    }
-#endif /* !ALLOW_HOT_CACHE */
 }