]> granicus.if.org Git - apache/commitdiff
Optimized the addition of the core output filter
authorBrian Pane <brianp@apache.org>
Tue, 2 Jul 2002 21:40:13 +0000 (21:40 +0000)
committerBrian Pane <brianp@apache.org>
Tue, 2 Jul 2002 21:40:13 +0000 (21:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95941 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index c775fa8645b5c19bcde716b89fdafae83bfc283f..c2f23aeb5a32033aa7c54f99da606441546fb25b 100644 (file)
@@ -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;
 }