]> granicus.if.org Git - apache/commitdiff
AP_MIN_BYTES_TO_WRITE currently equals APR_BUCKET_BUFF_SIZE, so we
authorRyan Bloom <rbb@apache.org>
Tue, 1 May 2001 19:40:14 +0000 (19:40 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 1 May 2001 19:40:14 +0000 (19:40 +0000)
have to use <=

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88970 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index 6e2706d990cb7cb398fb218b6f0e9852b8ffd57e..014cb78950031d8ec314c0efb5780a021fe685e2 100644 (file)
@@ -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);
                 }