From aa6d326079f2b7330bdb4d80be9182fcc0be87b1 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 14 Jul 2019 12:03:29 -0400 Subject: [PATCH] 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 --- misc/fuse2fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index b2e4e84..be2cd1d 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -19,7 +19,7 @@ # include # include # include -# define FUSE_PLATFORM_OPTS ",nonempty,big_writes" +# define FUSE_PLATFORM_OPTS ",big_writes" # ifdef HAVE_SYS_ACL_H # define TRANSLATE_LINUX_ACLS # endif -- 1.8.3.1