Commit 08238a6f authored by Graham Leggett's avatar Graham Leggett
Browse files

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
parent 2152d9ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {