aboutsummaryrefslogtreecommitdiffstats
path: root/fuse
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2009-12-20 15:27:17 +0000
committerrelan <relan@users.noreply.github.com>2015-08-24 08:26:11 +0300
commit11f8be7e02928bc607554bbed9deda8ab2cbd2ae (patch)
treeb93e1c78b09b101a7236cf169d4b5f659c2718d0 /fuse
parent4646356ad358dfa318063f38c7bb344a3385d70e (diff)
downloadandroid_external_exfat-11f8be7e02928bc607554bbed9deda8ab2cbd2ae.tar.gz
android_external_exfat-11f8be7e02928bc607554bbed9deda8ab2cbd2ae.tar.bz2
android_external_exfat-11f8be7e02928bc607554bbed9deda8ab2cbd2ae.zip
Pass mount options to exfat_mount().
Diffstat (limited to 'fuse')
-rw-r--r--fuse/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuse/main.c b/fuse/main.c
index 083bd84..652fc04 100644
--- a/fuse/main.c
+++ b/fuse/main.c
@@ -313,7 +313,7 @@ int main(int argc, char* argv[])
return 1;
}
- if (exfat_mount(&ef, spec) != 0)
+ if (exfat_mount(&ef, spec, mount_options) != 0)
{
fuse_unmount(mount_point, fc);
fuse_destroy(fh);