[PATCH 5/6] ntdll: document a few other filesystem case-sensitivity cases

Damjan Jovanovic damjan.jov at gmail.com
Mon Nov 9 22:49:59 CST 2020


Signed-off-by: Damjan Jovanovic <damjan.jov at gmail.com>
---
 dlls/ntdll/unix/file.c | 3 +++
 1 file changed, 3 insertions(+)
-------------- next part --------------
diff --git a/dlls/ntdll/unix/file.c b/dlls/ntdll/unix/file.c
index 3f18a3ea7ed..ff95db6c688 100644
--- a/dlls/ntdll/unix/file.c
+++ b/dlls/ntdll/unix/file.c
@@ -1133,6 +1133,9 @@ static BOOLEAN get_dir_case_sensitivity_stat( const char *dir )
          * newer versions should be case-insensitive on the server anyway */
         !strcmp( stfs.f_fstypename, "smbfs" ))
         return FALSE;
+    /* no ntfs-3g: modern fusefs has no way to report the filesystem on FreeBSD
+     * no cd9660 or udf, they're case-sensitive on FreeBSD
+     */
 #ifdef __APPLE__
     if (!strcmp( stfs.f_fstypename, "msdos" ) ||
         !strcmp( stfs.f_fstypename, "cd9660" ) ||


More information about the wine-devel mailing list