From: Ruediger Pluem Date: Sun, 2 Sep 2007 08:57:34 +0000 (+0000) Subject: * Improve formating. No functional change. X-Git-Tag: 2.3.0~1474 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f1e54fd07a4bebaec385ed9cf0a6408fb4cf5f9;p=thirdparty%2Fapache%2Fhttpd.git * Improve formating. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@571932 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_connect.c b/modules/proxy/mod_proxy_connect.c index 5e75616ce5a..d874bdf936c 100644 --- a/modules/proxy/mod_proxy_connect.c +++ b/modules/proxy/mod_proxy_connect.c @@ -113,8 +113,9 @@ static int proxy_connect_handler(request_rec *r, proxy_worker *worker, /* we break the URL into host, port, uri */ if (APR_SUCCESS != apr_uri_parse_hostinfo(p, url, &uri)) { - return ap_proxyerror(r, HTTP_BAD_REQUEST, apr_pstrcat(p, - "URI cannot be parsed: ", url, NULL)); + return ap_proxyerror(r, HTTP_BAD_REQUEST, + apr_pstrcat(p, "URI cannot be parsed: ", url, + NULL)); } 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, 0, p); if (APR_SUCCESS != err) { - return ap_proxyerror(r, HTTP_BAD_GATEWAY, apr_pstrcat(p, - "DNS lookup failure for: ", - uri.hostname, NULL)); + return ap_proxyerror(r, HTTP_BAD_GATEWAY, + apr_pstrcat(p, "DNS lookup failure for: ", + uri.hostname, NULL)); } /* are we connecting directly, or via a proxy? */