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