]> granicus.if.org Git - apache/commitdiff
Name space protect mod_mem_cache config directives
authorBill Stoddard <stoddard@apache.org>
Mon, 29 Apr 2002 19:09:20 +0000 (19:09 +0000)
committerBill Stoddard <stoddard@apache.org>
Mon, 29 Apr 2002 19:09:20 +0000 (19:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94866 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_mem_cache.c

index 6f25c86283cb32984d66697f62f1e7a0cf60442f..d716e4a15358e15591c6679cc8ae283bf2772ac8 100644 (file)
@@ -862,13 +862,13 @@ static const char
 
 static const command_rec cache_cmds[] =
 {
-    AP_INIT_TAKE1("CacheSize", set_max_cache_size, NULL, RSRC_CONF,
+    AP_INIT_TAKE1("MCacheSize", set_max_cache_size, NULL, RSRC_CONF,
      "The maximum amount of memory used by the cache in KBytes"),
-    AP_INIT_TAKE1("CacheMaxObjectCount", set_max_object_count, NULL, RSRC_CONF,
+    AP_INIT_TAKE1("MCacheMaxObjectCount", set_max_object_count, NULL, RSRC_CONF,
      "The maximum number of objects allowed to be placed in the cache"),
-    AP_INIT_TAKE1("CacheMinObjectSize", set_min_cache_object_size, NULL, RSRC_CONF,
+    AP_INIT_TAKE1("MCacheMinObjectSize", set_min_cache_object_size, NULL, RSRC_CONF,
      "The minimum size (in bytes) of an object to be placed in the cache"),
-    AP_INIT_TAKE1("CacheMaxObjectSize", set_max_cache_object_size, NULL, RSRC_CONF,
+    AP_INIT_TAKE1("MCacheMaxObjectSize", set_max_cache_object_size, NULL, RSRC_CONF,
      "The maximum size (in bytes) of an object to be placed in the cache"),
     {NULL}
 };