From: Bill Stoddard Date: Thu, 19 Dec 2002 14:44:59 +0000 (+0000) Subject: Correct a warning message. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=461b261a7ddd1c90dc07e46a74da678d2c4e418f;p=apache Correct a warning message. Submitted by: Astrid Ke�ler [kess@kess-net.de] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_mem_cache.c b/modules/experimental/mod_mem_cache.c index aaf117a2d6..ecce72a566 100644 --- a/modules/experimental/mod_mem_cache.c +++ b/modules/experimental/mod_mem_cache.c @@ -1070,7 +1070,7 @@ static int mem_cache_post_config(apr_pool_t *p, apr_pool_t *plog, } if (sconf->max_streaming_buffer_size < sconf->min_cache_object_size) { ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, - "MCacheMaxStreamingBuffer must be less than or equal to MCacheMaxObjectSize. " + "MCacheMaxStreamingBuffer must be greater than or equal to MCacheMinObjectSize. " "Resetting MCacheMaxStreamingBuffer to MCacheMinObjectSize."); sconf->max_streaming_buffer_size = sconf->min_cache_object_size; }