From: Jeff Trawick Date: Tue, 14 Nov 2000 02:13:41 +0000 (+0000) Subject: Get http_core to compile again after the last change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=adc71d4262d9446192a2ceaf304b7a485c88ea16;p=apache Get http_core to compile again after the last change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86949 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 3cc1166175..84f281e9f8 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -3057,11 +3057,11 @@ static apr_status_t coalesce_filter(ap_filter_t *f, ap_bucket_brigade *b) if (pass_the_brigade) { /* Insert ctx->buf into the correct spot in the brigade */ if (insert_first) { - e = ap_bucket_create_pool(ctx->buf, ctx->cnt, 1, NULL); + e = ap_bucket_create_pool(ctx->buf, ctx->cnt, NULL); AP_BRIGADE_INSERT_HEAD(b, e); } else if (insert_before) { - e = ap_bucket_create_pool(ctx->buf, ctx->cnt, 1, NULL); + e = ap_bucket_create_pool(ctx->buf, ctx->cnt, NULL); AP_BUCKET_INSERT_BEFORE(e, insert_before); AP_BUCKET_REMOVE(insert_before); ap_bucket_destroy(insert_before);