From: Eric Covener Date: Wed, 26 Jun 2024 13:39:59 +0000 (+0000) Subject: match AP_IS_SLASH macro X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a40dcfbdd155526d503a05006203d83a9e20652f;p=thirdparty%2Fapache%2Fhttpd.git match AP_IS_SLASH macro followup to 1918651 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1918663 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 7c965a2ed4f..0d928e4b997 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -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])