From 2b161120fc1fd6cb56b9e82cefac8885c5d27c29 Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Sun, 2 Jun 2002 20:19:54 +0000 Subject: [PATCH] Propogate apr-util change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95473 13f79535-47bb-0310-9956-ffa450edef68 --- server/error_bucket.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/error_bucket.c b/server/error_bucket.c index c6f51d4123..f942ab4cde 100644 --- a/server/error_bucket.c +++ b/server/error_bucket.c @@ -86,7 +86,6 @@ AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error, h->data = (buf) ? apr_pstrdup(p, buf) : NULL; b = apr_bucket_shared_make(b, h, 0, 0); - b->is_metadata = 1; b->type = &ap_bucket_type_error; return b; } @@ -104,7 +103,7 @@ AP_DECLARE(apr_bucket *) ap_bucket_error_create(int error, const char *buf, } AP_DECLARE_DATA const apr_bucket_type_t ap_bucket_type_error = { - "ERROR", 5, + "ERROR", 5, APR_BUCKET_METADATA, error_bucket_destroy, error_bucket_read, apr_bucket_setaside_notimpl, -- 2.40.0