diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2012-01-18 07:26:50 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2012-01-18 07:26:50 +0100 |
commit | 8098c140212a49cf910da36acd095ead299c62d9 (patch) | |
tree | e54331112d496839e4ba070087044de32eb38873 | |
parent | 3643b38e70f5ea30b7037d8b3e7aa6df0195c861 (diff) |
Add some safe and useful ntfs-3g allowed mount options
-rw-r--r-- | src/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device.c b/src/device.c index 9e886b3..d1a70fe 100644 --- a/src/device.c +++ b/src/device.c @@ -5881,7 +5881,7 @@ static const char *vfat_allow_gid_self[] = { "gid=", NULL }; /* this is assuming that ntfs-3g is used */ static const char *ntfs_defaults[] = { "uid=", "gid=", "dmask=0077", "fmask=0177", NULL }; -static const char *ntfs_allow[] = { "umask=", "dmask=", "fmask=", NULL }; +static const char *ntfs_allow[] = { "umask=", "dmask=", "fmask=", "locale=", "norecover", "ignore_case", "windows_names", "compression", "nocompression"NULL }; static const char *ntfs_allow_uid_self[] = { "uid=", NULL }; static const char *ntfs_allow_gid_self[] = { "gid=", NULL }; |