Fixed comment.

This commit is contained in:
brectanus 2007-09-26 19:49:48 +00:00
parent 7c393c4874
commit 9f898a0e0b

View File

@ -258,7 +258,7 @@ static apr_status_t send_error_bucket(ap_filter_t *f, int status) {
apr_bucket_brigade *brigade = NULL;
apr_bucket *bucket = NULL;
/* Set the status line explicitly */
/* Set the status line explicitly for the error document */
f->r->status_line = ap_get_status_line(status);
brigade = apr_brigade_create(f->r->pool, f->r->connection->bucket_alloc);
@ -277,7 +277,7 @@ static apr_status_t send_error_bucket(ap_filter_t *f, int status) {
ap_pass_brigade(f->next, brigade);
/* NOTE:
* It may not matter what we return from the filter as it may be too
* It may not matter what we do from the filter as it may be too
* late to even generate an error (already sent to client). Nick Kew
* recommends to return APR_EGENERAL in hopes that the handler in control
* will notice and do The Right Thing. So, that is what we do now.