From: Brian Pane Date: Sun, 27 Jan 2002 19:24:20 +0000 (+0000) Subject: optimized away one more filter name lookup during request processing X-Git-Tag: 2.0.31~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efbab2c1048f637f669cfe3eb67ac6f250e674fd;p=apache optimized away one more filter name lookup during request processing git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93052 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 3a63113166..8b576b7796 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -866,7 +866,8 @@ request_rec *ap_read_request(conn_rec *conn) } } - ap_add_input_filter("HTTP_IN", NULL, r, r->connection); + ap_add_input_filter_handle(ap_http_input_filter_handle, + NULL, r, r->connection); if ((access_status = ap_run_post_read_request(r))) { ap_die(access_status, r);