diff options
author | Ryan Bloom <rbb@apache.org> | 2002-03-06 15:43:45 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2002-03-06 15:43:45 +0100 |
commit | 17085db8d6d5e9f474cceb2d3eebe2644f304eae (patch) | |
tree | b4066acfc68ddaa3f3ac9ec3f94f2b13f560b17b /modules/http | |
parent | mod_env xml conversion. (diff) | |
download | apache2-17085db8d6d5e9f474cceb2d3eebe2644f304eae.tar.xz apache2-17085db8d6d5e9f474cceb2d3eebe2644f304eae.zip |
Remove a comment that no longer applies.
Submitted by: Greg Stein
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93725 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_request.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 353af402fb..efe843ac55 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -101,10 +101,7 @@ AP_DECLARE(void) ap_die(int type, request_rec *r) int error_index = ap_index_of_response(type); char *custom_response = ap_response_code_string(r, error_index); int recursive_error = 0; - /* There are some cases where we walk up the request hierarchy - * to obtain the original error, but when adding the required_filters, - * we need to do so against the one we came in with. So, save it. - */ + if (type == AP_FILTER_ERROR) { return; } |