From: Ryan Bloom Date: Sat, 27 Jan 2001 17:59:02 +0000 (+0000) Subject: Forgot this header file when I cleaned the error_bucket code. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c94e933e0a0ecb237cecdecb05676789ae3e7a54;p=apache Forgot this header file when I cleaned the error_bucket code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87869 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index bf93e7565f..f1231ddcee 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -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;