diff options
author | Brian Pane <brianp@apache.org> | 2002-07-02 23:35:19 +0200 |
---|---|---|
committer | Brian Pane <brianp@apache.org> | 2002-07-02 23:35:19 +0200 |
commit | d6baa119a047c33405003e0e83e6a158b04257d0 (patch) | |
tree | 4f3b08c62365c2d9fefbac548740036c718cf985 /server | |
parent | htpasswd needs to add a newline at the end of each record. (diff) | |
download | apache2-d6baa119a047c33405003e0e83e6a158b04257d0.tar.xz apache2-d6baa119a047c33405003e0e83e6a158b04257d0.zip |
Replaced ap_add_input_filter() call with cheaper ap_add_input_filter_handle()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95940 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r-- | server/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/core.c b/server/core.c index 3a066f5ecf..c775fa8645 100644 --- a/server/core.c +++ b/server/core.c @@ -4060,7 +4060,7 @@ static int core_pre_connection(conn_rec *c, void *csd) net->client_socket = csd; ap_set_module_config(net->c->conn_config, &core_module, csd); - ap_add_input_filter("CORE_IN", net, NULL, net->c); + ap_add_input_filter_handle(ap_core_input_filter_handle, net, NULL, net->c); ap_add_output_filter("CORE", net, NULL, net->c); return DONE; } |