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

Remove tabs.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@577349 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Frederic Clere
2007-09-19 16:40:26 +00:00
parent e2bd543fdc
commit 8a7f22fc54

View File

@@ -751,18 +751,18 @@ apr_status_t ap_proxy_http_request(apr_pool_t *p, request_rec *r,
) {
continue;
}
/* Do we want to strip Proxy-Authorization ?
* If we haven't used it, then NO
* If we have used it then MAYBE: RFC2616 says we MAY propagate it.
* So let's make it configurable by env.
*/
/* Do we want to strip Proxy-Authorization ?
* If we haven't used it, then NO
* If we have used it then MAYBE: RFC2616 says we MAY propagate it.
* So let's make it configurable by env.
*/
if (!strcasecmp(headers_in[counter].key,"Proxy-Authorization")) {
if (r->user != NULL) { /* we've authenticated */
if (!apr_table_get(r->subprocess_env, "Proxy-Chain-Auth")) {
continue;
}
}
}
}
}
/* Skip Transfer-Encoding and Content-Length for now.