diff options
author | Daniel Pinto <danielpinto52@gmail.com> | 2022-10-10 13:30:15 +0200 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2022-11-12 18:59:43 +0100 |
commit | 4c9ba192c73f52dc1d549fcfeb109b725fea8950 (patch) | |
tree | 20e19c1f8d1dcee8ab022e8194b997ad83ff6769 /fs/ntfs3 | |
parent | fs/ntfs3: Document windows_names mount option (diff) | |
download | linux-4c9ba192c73f52dc1d549fcfeb109b725fea8950.tar.xz linux-4c9ba192c73f52dc1d549fcfeb109b725fea8950.zip |
fs/ntfs3: Fix hidedotfiles mount option by reversing behaviour
Currently, the hidedotfiles mount option is behaving in the reverse
way of what would be expected: enabling it disables setting the
hidden attribute on files or directories with names starting with a
dot and disabling it enables the setting.
Reverse the behaviour of the hidedotfiles mount option so it matches
what is expected.
Signed-off-by: Daniel Pinto <danielpinto52@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3')
-rw-r--r-- | fs/ntfs3/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index a91852b17c2d..0207cafbab08 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -361,7 +361,7 @@ static int ntfs_fs_parse_param(struct fs_context *fc, opts->nohidden = result.negated ? 1 : 0; break; case Opt_hide_dot_files: - opts->hide_dot_files = result.negated ? 1 : 0; + opts->hide_dot_files = result.negated ? 0 : 1; break; case Opt_windows_names: opts->windows_names = result.negated ? 0 : 1; |