From eb2e6db97a7bbeb257cac7571af82dfb29f14691 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 14 Nov 2000 02:13:41 +0000 Subject: [PATCH] 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 --- modules/http/http_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.50.1