diff --git a/apache2/apache2_util.c b/apache2/apache2_util.c index cdae2b5808..9bd59d12c9 100644 --- a/apache2/apache2_util.c +++ b/apache2/apache2_util.c @@ -30,6 +30,8 @@ apr_status_t send_error_bucket(modsec_rec *msr, ap_filter_t *f, int status) { /* Set the status line explicitly for the error document */ f->r->status_line = ap_get_status_line(status); + /* Clear previously set response code to make clear that this is not a recursive error */ + f->r->status = 200; brigade = apr_brigade_create(f->r->pool, f->r->connection->bucket_alloc); if (brigade == NULL) return APR_EGENERAL;