Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit d392e85

Browse files
fs/ntfs3: Fix the format of the "nocase" mount option
The 'nocase' option was mistakenly added as fsparam_flag_no with the 'no' prefix, causing the case-insensitive mode to require the 'nonocase' option to be enabled. Fixes: a3a956c ("fs/ntfs3: Add option "nocase"") Signed-off-by: Konstantin Komarov <[email protected]>
1 parent 2f3e176 commit d392e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/ntfs3/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ static const struct fs_parameter_spec ntfs_fs_parameters[] = {
275275
fsparam_flag_no("acl", Opt_acl),
276276
fsparam_string("iocharset", Opt_iocharset),
277277
fsparam_flag_no("prealloc", Opt_prealloc),
278-
fsparam_flag_no("nocase", Opt_nocase),
278+
fsparam_flag_no("case", Opt_nocase),
279279
{}
280280
};
281281
// clang-format on

0 commit comments

Comments
 (0)