]> granicus.if.org Git - apache/commitdiff
Forgot this header file when I cleaned the error_bucket code.
authorRyan Bloom <rbb@apache.org>
Sat, 27 Jan 2001 17:59:02 +0000 (17:59 +0000)
committerRyan Bloom <rbb@apache.org>
Sat, 27 Jan 2001 17:59:02 +0000 (17:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87869 13f79535-47bb-0310-9956-ffa450edef68

include/http_protocol.h

index bf93e7565fa7c93256342abf0eb3a7c14bdfc84e..f1231ddcee3064047774e9d62f74c45c6bb8b92e 100644 (file)
@@ -561,10 +561,10 @@ typedef struct ap_bucket_error ap_bucket_error;
  * first brigade to be sent from a given filter.
  */
 struct ap_bucket_error {
-    /** The start of the data actually allocated.  This should never be
-     * modified, it is only used to free the bucket.
-     */
-    char    *start;
+    /** The error code */
+    int status;
+    /** The error string */
+    const char    *start;
 };
 
 AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_error;