From 00eeea913756cd539f663c31f943f3167fe56ae8 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Fri, 12 Jul 2024 15:41:42 +0000 Subject: core: ap_location_walk() does not deal with the filesystem So it shouldn't merge slashes according to filesystem rules. * server/request.c(ap_location_walk): Use ap_no2slash_ex(,0) instead of ap_no2slash() to ignore filesystem specifics. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919165 13f79535-47bb-0310-9956-ffa450edef68 --- server/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server') diff --git a/server/request.c b/server/request.c index 54f656ac72..791d1cea6b 100644 --- a/server/request.c +++ b/server/request.c @@ -1500,7 +1500,7 @@ AP_DECLARE(int) ap_location_walk(request_rec *r) } else { char *uri = apr_pstrdup(r->pool, r->uri); - ap_no2slash(uri); + ap_no2slash_ex(uri, 0/*not an FS path*/); entry_uri = uri; } -- cgit v1.2.3