summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-05-01 19:40:14 +0000
committerRyan Bloom <rbb@apache.org>2001-05-01 19:40:14 +0000
commitd25aa600d2bea01fe3844eb98f92193b886fb7f6 (patch)
treec0fd2a0bdbcc92faf4a2e0be76ff092bea3c690c
parent10ead4521affb11ca4dcc5811684d6cfd521f8ae (diff)
downloadhttpd-d25aa600d2bea01fe3844eb98f92193b886fb7f6.tar.gz
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
-rw-r--r--server/core.c2
1 files changed, 1 insertions, 1 deletions
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);
}