From: William A. Rowe Jr Date: Fri, 31 Aug 2001 02:31:08 +0000 (+0000) Subject: Invoking the handler must occur at the caller's discression, in order X-Git-Tag: 2.0.26~365 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=679e890efc6634951b7d28befb22afc733526438;p=apache Invoking the handler must occur at the caller's discression, in order for the sub_req mechanism to share this code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90836 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 33f6a45f32..20a75b10ac 100644 --- a/server/request.c +++ b/server/request.c @@ -240,10 +240,6 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r) */ ap_run_insert_filter(r); - if ((access_status = ap_invoke_handler(r)) != 0) { - return access_status; - } - return OK; }