From c83c2da6a67fc008cda8f3046e9c2a467749bb45 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Sun, 15 Apr 2001 18:16:22 +0000 Subject: [PATCH] Oops - the proxy host and port were left off when the proxy tries to run the handler to connect to a proxy server. PR: Obtained from: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88867 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 899abc4e36..0d6b28977f 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -366,7 +366,7 @@ static int proxy_handler(request_rec *r) /* handle the scheme */ ap_log_error(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO, 0, r->server, "Trying to run scheme_handler against proxy"); - access_status = proxy_run_scheme_handler(r, conf, url, NULL, 0); + access_status = proxy_run_scheme_handler(r, conf, url, ents[i].hostname, ents[i].port); /* an error or success */ if (access_status != DECLINED && access_status != HTTP_BAD_GATEWAY) { -- 2.50.1