Damjan Jovanovic : ntdll: Document a few other filesystem case-sensitivity cases.

Alexandre Julliard julliard at winehq.org
Tue Nov 10 15:30:24 CST 2020


Module: wine
Branch: master
Commit: 2f90b17ab23988b8f9744a79a43376c6b98b72d0
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2f90b17ab23988b8f9744a79a43376c6b98b72d0

Author: Damjan Jovanovic <damjan.jov at gmail.com>
Date:   Tue Nov 10 06:49:59 2020 +0200

ntdll: Document a few other filesystem case-sensitivity cases.

Signed-off-by: Damjan Jovanovic <damjan.jov at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/unix/file.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/ntdll/unix/file.c b/dlls/ntdll/unix/file.c
index f7fa78db2be..cf413f46e5c 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-cvs mailing list