From d25aa600d2bea01fe3844eb98f92193b886fb7f6 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Tue, 1 May 2001 19:40:14 +0000 Subject: [PATCH] AP_MIN_BYTES_TO_WRITE currently equals APR_BUCKET_BUFF_SIZE, so we have to use <= git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88970 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core.c b/server/core.c index 6e2706d990..014cb78950 100644 --- a/server/core.c +++ b/server/core.c @@ -3164,7 +3164,7 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b) a bit shaky if changes are made to some of the buffering sizes. Let's do an assert to prevent potential future problems... */ - AP_DEBUG_ASSERT(AP_MIN_BYTES_TO_WRITE < + AP_DEBUG_ASSERT(AP_MIN_BYTES_TO_WRITE <= APR_BUCKET_BUFF_SIZE); apr_brigade_write(ctx->b, NULL, NULL, str, n); } -- 2.50.1