From: Brian Pane Date: Tue, 2 Jul 2002 21:40:13 +0000 (+0000) Subject: Optimized the addition of the core output filter X-Git-Tag: 2.0.40~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c86d4bf8803e43e1e50c666398fd04599ce57b7;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/core.c b/server/core.c index c775fa8645b..c2f23aeb5a3 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; }