]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
match AP_IS_SLASH macro
authorEric Covener <covener@apache.org>
Wed, 26 Jun 2024 13:39:59 +0000 (13:39 +0000)
committerEric Covener <covener@apache.org>
Wed, 26 Jun 2024 13:39:59 +0000 (13:39 +0000)
followup to 1918651

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1918663 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index 7c965a2ed4f78c7ae7c2ea439bb8da6527a94965..0d928e4b99756c2b079bd0138005d49da73f211a 100644 (file)
@@ -685,7 +685,7 @@ static unsigned is_absolute_uri(char *uri, int *supportsqs)
 
 static int is_absolute_path(const char *path)
 {
-#ifndef WIN32
+#ifndef CASE_BLIND_FILESYSTEM
     return (path[0] == '/');
 #else
     return ((AP_IS_SLASH(path[0]) && path[1] == path[0])