From: Brian Pane Date: Sun, 27 Jan 2002 02:38:45 +0000 (+0000) Subject: optimization: switched to ap_add_output_filter_handle() for installation of X-Git-Tag: 2.0.31~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bef49daa27694823aae45543cacdebcc65e21ae;p=apache optimization: switched to ap_add_output_filter_handle() for installation of subreq filter git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 124b92bb53..f58e18caaf 100644 --- a/server/request.c +++ b/server/request.c @@ -1483,7 +1483,8 @@ static request_rec *make_sub_request(const request_rec *r, else { rnew->output_filters = r->output_filters; } - ap_add_output_filter("SUBREQ_CORE", NULL, rnew, rnew->connection); + ap_add_output_filter_handle(ap_subreq_core_filter_handle, + NULL, rnew, rnew->connection); /* no input filters for a subrequest */