From 8ca7b275f81a8bea97290e90edd8aa2e127dc697 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 3 Nov 2013 21:01:11 -0800 Subject: [PATCH] We don't need -odebug for the fuse nfs client anymore --- examples/fuse_nfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/fuse_nfs.c b/examples/fuse_nfs.c index 7e9eba6..fa30764 100644 --- a/examples/fuse_nfs.c +++ b/examples/fuse_nfs.c @@ -214,11 +214,10 @@ int main(int argc, char *argv[]) char *url = NULL; char *mnt = NULL; char *server = NULL, *export = NULL, *strp; - int fuse_nfs_argc = 6; + int fuse_nfs_argc = 5; char *fuse_nfs_argv[16] = { "fuse-nfs", "", - "-odebug", "-oallow_other", "-odefault_permissions", "-omax_write=32768", @@ -232,6 +231,7 @@ int main(int argc, char *argv[]) NULL, NULL, NULL, + NULL, }; while ((c = getopt_long(argc, argv, "?hm:n:", long_opts, -- 2.34.1