From 9f898a0e0b2032ba509f9d0760607501f3871933 Mon Sep 17 00:00:00 2001 From: brectanus Date: Wed, 26 Sep 2007 19:49:48 +0000 Subject: [PATCH] Fixed comment. --- apache2/apache2_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apache2/apache2_io.c b/apache2/apache2_io.c index 9ab15cb2..882ea875 100644 --- a/apache2/apache2_io.c +++ b/apache2/apache2_io.c @@ -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.