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

mod_proxy: follow up to r1918626: Simplify ap_proxy_fixup_uds_filename() and callers.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1918647 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2024-06-26 09:19:16 +00:00
parent 7672c68e4a
commit ad3f022fa1
3 changed files with 21 additions and 20 deletions

View File

@@ -1328,8 +1328,7 @@ static int proxy_handler(request_rec *r)
r->filename = apr_pstrcat(r->pool, r->handler, r->filename, NULL);
/* Still need to fixup/canonicalize r->filename */
uri = r->filename + 6;
rc = ap_proxy_fixup_uds_filename(r, &uri);
rc = ap_proxy_fixup_uds_filename(r);
if (rc <= OK) {
rc = proxy_fixup(r);
}