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;
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;
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;
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;