]> granicus.if.org Git - apache/commitdiff
Correct a warning message.
authorBill Stoddard <stoddard@apache.org>
Thu, 19 Dec 2002 14:44:59 +0000 (14:44 +0000)
committerBill Stoddard <stoddard@apache.org>
Thu, 19 Dec 2002 14:44:59 +0000 (14:44 +0000)
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

modules/experimental/mod_mem_cache.c

index aaf117a2d67f2c3f5acb08f85121196eece8bd0f..ecce72a566f6a15087a3ef013332d9939d8827f3 100644 (file)
@@ -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;
     }