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

* Improve formating. No functional change.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@571932 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ruediger Pluem
2007-09-02 08:57:34 +00:00
parent 5400d6ed7d
commit 0f1e54fd07

View File

@@ -113,8 +113,9 @@ static int proxy_connect_handler(request_rec *r, proxy_worker *worker,
/* we break the URL into host, port, uri */ /* we break the URL into host, port, uri */
if (APR_SUCCESS != apr_uri_parse_hostinfo(p, url, &uri)) { if (APR_SUCCESS != apr_uri_parse_hostinfo(p, url, &uri)) {
return ap_proxyerror(r, HTTP_BAD_REQUEST, apr_pstrcat(p, return ap_proxyerror(r, HTTP_BAD_REQUEST,
"URI cannot be parsed: ", url, NULL)); apr_pstrcat(p, "URI cannot be parsed: ", url,
NULL));
} }
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
@@ -124,9 +125,9 @@ static int proxy_connect_handler(request_rec *r, proxy_worker *worker,
err = apr_sockaddr_info_get(&uri_addr, uri.hostname, APR_UNSPEC, uri.port, err = apr_sockaddr_info_get(&uri_addr, uri.hostname, APR_UNSPEC, uri.port,
0, p); 0, p);
if (APR_SUCCESS != err) { if (APR_SUCCESS != err) {
return ap_proxyerror(r, HTTP_BAD_GATEWAY, apr_pstrcat(p, return ap_proxyerror(r, HTTP_BAD_GATEWAY,
"DNS lookup failure for: ", apr_pstrcat(p, "DNS lookup failure for: ",
uri.hostname, NULL)); uri.hostname, NULL));
} }
/* are we connecting directly, or via a proxy? */ /* are we connecting directly, or via a proxy? */