]> granicus.if.org Git - apache/commitdiff
Get http_core to compile again after the last change.
authorJeff Trawick <trawick@apache.org>
Tue, 14 Nov 2000 02:13:41 +0000 (02:13 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 14 Nov 2000 02:13:41 +0000 (02:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86949 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 3cc1166175b4350675e0fbbf60b41116239d53c3..84f281e9f8a3a693b9eef2071f31312e3073cdb2 100644 (file)
@@ -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);