1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Bugfixes to proxy_ftp.c -> in some places uri_addr was used instead

of connect_addr - all hail cut and paste!
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2001-04-06 14:25:54 +00:00
parent 5dd4149bc0
commit 7a742e7fd1
5 changed files with 29 additions and 31 deletions

View File

@@ -1073,11 +1073,11 @@ int ap_proxy_checkproxyblock(request_rec *r, proxy_server_conf *conf,
}
/* set up the minimal filter set */
int ap_proxy_pre_http_connection(conn_rec *c)
int ap_proxy_pre_http_connection(conn_rec *c, request_rec *r)
{
ap_add_input_filter("HTTP_IN", NULL, NULL, c);
ap_add_input_filter("CORE_IN", NULL, NULL, c);
ap_add_output_filter("CORE", NULL, NULL, c);
ap_add_input_filter("HTTP_IN", NULL, r, c);
ap_add_input_filter("CORE_IN", NULL, r, c);
ap_add_output_filter("CORE", NULL, r, c);
return OK;
}