]> granicus.if.org Git - apache/commitdiff
Propogate apr-util change
authorCliff Woolley <jwoolley@apache.org>
Sun, 2 Jun 2002 20:19:54 +0000 (20:19 +0000)
committerCliff Woolley <jwoolley@apache.org>
Sun, 2 Jun 2002 20:19:54 +0000 (20:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95473 13f79535-47bb-0310-9956-ffa450edef68

server/error_bucket.c

index c6f51d41233b404b8f63ff76ce10597f9699f405..f942ab4cde299ebbad3a9f7398016f00f973edf7 100644 (file)
@@ -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,