From 1bef49daa27694823aae45543cacdebcc65e21ae Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Sun, 27 Jan 2002 02:38:45 +0000 Subject: [PATCH] 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 --- server/request.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ -- 2.50.1