Commit ad3749bf authored by Ryan Bloom's avatar Ryan Bloom
Browse files

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
parent 3658b767
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;