Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/ntfsprogs
In directory delta357:/tmp/cvs-serv6665/ntfsprogs
Modified Files:
ntfsmount.c
Log Message:
Treat filenames in POSIX namespace as case insensitive in case of case insensitive mounts.
Index: ntfsmount.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/ntfsmount.c,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -p -r1.93 -r1.94
--- ntfsmount.c 13 Nov 2006 17:01:53 -0000 1.93
+++ ntfsmount.c 15 Nov 2006 23:15:17 -0000 1.94
@@ -1411,8 +1411,8 @@ static int ntfs_fuse_mount(const char *d
ntfs_volume *vol;
vol = utils_mount_volume(device, ((ctx->ro) ? NTFS_MNT_RDONLY : 0) |
- ((ctx->noatime) ? NTFS_MNT_NOATIME : 0) |
- NTFS_MNT_CASE_SENSITIVE, ctx->force);
+ ((ctx->noatime) ? NTFS_MNT_NOATIME : 0) /*|
+ NTFS_MNT_CASE_SENSITIVE*/, ctx->force);
if (!vol) {
ntfs_log_error("Mount failed.\n");
return -1;
|