summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2002-04-29 21:44:47 +0200
committerBill Stoddard <stoddard@apache.org>2002-04-29 21:44:47 +0200
commitbe5f867774e4a5e8767233e307b7581d3090eb50 (patch)
tree696e62b09315c063c2e5592bbe904bfb21215215
parentName space protect mod_mem_cache config directives (diff)
downloadapache2-be5f867774e4a5e8767233e307b7581d3090eb50.tar.xz
apache2-be5f867774e4a5e8767233e307b7581d3090eb50.zip
Forget to update the error messages
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94867 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/experimental/mod_mem_cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/experimental/mod_mem_cache.c b/modules/experimental/mod_mem_cache.c
index d716e4a153..59698a52f1 100644
--- a/modules/experimental/mod_mem_cache.c
+++ b/modules/experimental/mod_mem_cache.c
@@ -821,7 +821,7 @@ static const char
apr_size_t val;
if (sscanf(arg, "%d", &val) != 1) {
- return "CacheSize argument must be an integer representing the max cache size in KBytes.";
+ return "MCacheSize argument must be an integer representing the max cache size in KBytes.";
}
sconf->max_cache_size = val*1024;
return NULL;
@@ -832,7 +832,7 @@ static const char
apr_size_t val;
if (sscanf(arg, "%d", &val) != 1) {
- return "CacheMinObjectSize value must be an integer (bytes)";
+ return "MCacheMinObjectSize value must be an integer (bytes)";
}
sconf->min_cache_object_size = val;
return NULL;
@@ -843,7 +843,7 @@ static const char
apr_size_t val;
if (sscanf(arg, "%d", &val) != 1) {
- return "CacheMaxObjectSize value must be an integer (bytes)";
+ return "MCacheMaxObjectSize value must be an integer (bytes)";
}
sconf->max_cache_object_size = val;
return NULL;
@@ -854,7 +854,7 @@ static const char
apr_size_t val;
if (sscanf(arg, "%d", &val) != 1) {
- return "CacheMaxObjectCount value must be an integer";
+ return "MCacheMaxObjectCount value must be an integer";
}
sconf->max_object_cnt = val;
return NULL;