diff options
author | Fernando Silveira | 2010-01-09 14:46:43 -0800 |
---|---|---|
committer | Matt Colyer | 2010-01-09 14:46:43 -0800 |
commit | 7cd9a554db66914735e6430f6c5b6362b8c5460a (patch) | |
tree | 1c2782c4a64b2775a95092eae941acf9f4d24f88 /src | |
parent | 0d6b09eb5c85dbd2460d8eea6bb07e8ac9f77ac0 (diff) | |
download | ifuse-7cd9a554db66914735e6430f6c5b6362b8c5460a.tar.gz ifuse-7cd9a554db66914735e6430f6c5b6362b8c5460a.tar.bz2 |
Remove hardcoded allow_other fuse argument as some distros don't allow it.
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src')
-rw-r--r-- | src/ifuse.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ifuse.c b/src/ifuse.c index a0a20da..f0303f5 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -671,7 +671,6 @@ int main(int argc, char *argv[]) if (fuse_opt_parse(&args, NULL, ifuse_opts, ifuse_opt_proc) == -1) { return -1; } - fuse_opt_add_arg(&args, "-oallow_other"); if (!opts.mount_point) { fprintf(stderr, "ERROR: No mount point specified\n"); |