aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2019-07-14 12:03:29 -0400
committerTheodore Ts'o <tytso@mit.edu>2019-07-14 12:03:29 -0400
commitaa6d326079f2b7330bdb4d80be9182fcc0be87b1 (patch)
tree6c9e7884a6466d9bf45953427dc97d1803a66fa0
parentb71150355dca5409cf8e82a7e715e459a795bbf8 (diff)
downloade2fsprogs-aa6d326079f2b7330bdb4d80be9182fcc0be87b1.tar.gz
fuse2fs: stop using the nonempty option by default
The nonempty option isn't supported by fuse3, and so if fusermount is from fuse3, having fuse2fs specify nonempty automatically will prevent fuse2fs from working correctly. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--misc/fuse2fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c
index b2e4e84b5..be2cd1dbd 100644
--- a/misc/fuse2fs.c
+++ b/misc/fuse2fs.c
@@ -19,7 +19,7 @@
# include <linux/fs.h>
# include <linux/falloc.h>
# include <linux/xattr.h>
-# define FUSE_PLATFORM_OPTS ",nonempty,big_writes"
+# define FUSE_PLATFORM_OPTS ",big_writes"
# ifdef HAVE_SYS_ACL_H
# define TRANSLATE_LINUX_ACLS
# endif