Sorry about that. I figured out the problem while standing in the shower
just now and came to fix it, but it appears the network to apache.org is
down.
I tossed that assert, with a bit more commentary, into the code before
checkin. Figured it was harmless... sigh.
Ryan/Cliff: thanks for finding/fixing it.
Cheers,
-g
On Tue, May 01, 2001 at 07:40:16PM -0000, [EMAIL PROTECTED] wrote:
> rbb 01/05/01 12:40:16
>
> Modified: server core.c
> Log:
> AP_MIN_BYTES_TO_WRITE currently equals APR_BUCKET_BUFF_SIZE, so we
> have to use <=
>
> Revision Changes Path
> 1.12 +1 -1 httpd-2.0/server/core.c
>
> Index: core.c
> ===================================================================
> RCS file: /home/cvs/httpd-2.0/server/core.c,v
> retrieving revision 1.11
> retrieving revision 1.12
> diff -u -d -b -w -u -r1.11 -r1.12
> --- core.c 2001/05/01 18:43:09 1.11
> +++ core.c 2001/05/01 19:40:14 1.12
> @@ -3164,7 +3164,7 @@
> 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);
> }
>
>
>
--
Greg Stein, http://www.lyra.org/