From: Bill Stoddard Date: Thu, 19 Dec 2002 14:44:59 +0000 (+0000) Subject: Correct a warning message. X-Git-Tag: pre_ajp_proxy~2381 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41d34f1e99c5839f6b526f6836570adcc8406327;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; }