From 965cb047c15fcbb55c7e80aeea10758143a92ab3 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Mon, 17 Oct 2016 20:16:58 -0700 Subject: [PATCH] fuse_session_new(): accept --debug Fixes commit 3e022acf4076. Thanks to Github user mtheall for the review! --- lib/fuse_lowlevel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 86940eb..1dbe6ed 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2523,7 +2523,7 @@ clear_pipe: static const struct fuse_opt fuse_ll_opts[] = { LL_OPTION("debug", debug, 1), LL_OPTION("-d", debug, 1), - LL_OPTION("debug", debug, 1), + LL_OPTION("--debug", debug, 1), LL_OPTION("allow_root", allow_root, 1), FUSE_OPT_END }; -- 2.30.2