mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Change r->filters to r->output_filters. This sets things up for us to
put input filters into Apache. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86246 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -778,7 +778,7 @@ API_EXPORT(request_rec *) ap_sub_req_method_uri(const char *method,
|
||||
ap_copy_method_list(rnew->allowed_methods, r->allowed_methods);
|
||||
|
||||
/* start with the same set of output filters */
|
||||
rnew->filters = r->filters;
|
||||
rnew->output_filters = r->output_filters;
|
||||
|
||||
ap_set_sub_req_protocol(rnew, r);
|
||||
|
||||
@@ -873,7 +873,7 @@ API_EXPORT(request_rec *) ap_sub_req_lookup_file(const char *new_file,
|
||||
ap_copy_method_list(rnew->allowed_methods, r->allowed_methods);
|
||||
|
||||
/* start with the same set of output filters */
|
||||
rnew->filters = r->filters;
|
||||
rnew->output_filters = r->output_filters;
|
||||
|
||||
ap_set_sub_req_protocol(rnew, r);
|
||||
fdir = ap_make_dirstr_parent(rnew->pool, r->filename);
|
||||
|
Reference in New Issue
Block a user