diff options
author | Brian Pane <brianp@apache.org> | 2002-07-02 23:40:13 +0200 |
---|---|---|
committer | Brian Pane <brianp@apache.org> | 2002-07-02 23:40:13 +0200 |
commit | 8c86d4bf8803e43e1e50c666398fd04599ce57b7 (patch) | |
tree | 241565f8624588d34a88659728fdaec6d6d6f8f3 /server | |
parent | Replaced ap_add_input_filter() call with cheaper ap_add_input_filter_handle() (diff) | |
download | apache2-8c86d4bf8803e43e1e50c666398fd04599ce57b7.tar.xz apache2-8c86d4bf8803e43e1e50c666398fd04599ce57b7.zip |
Optimized the addition of the core output filter
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95941 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 c775fa8645..c2f23aeb5a 100644 --- a/server/core.c +++ b/server/core.c @@ -4061,7 +4061,7 @@ static int core_pre_connection(conn_rec *c, void *csd) ap_set_module_config(net->c->conn_config, &core_module, csd); ap_add_input_filter_handle(ap_core_input_filter_handle, net, NULL, net->c); - ap_add_output_filter("CORE", net, NULL, net->c); + ap_add_output_filter_handle(ap_core_output_filter_handle, net, NULL, net->c); return DONE; } |