From: Nikolaus Rath Date: Sun, 16 Oct 2016 21:17:30 +0000 (-0700) Subject: fuse_session_new: accept -o debug as synonym for -d X-Git-Tag: fuse-3.0.0rc1~36 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e022acf4076;p=qemu-gpiodev%2Flibfuse.git fuse_session_new: accept -o debug as synonym for -d --- diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 92e0ea3..fc37a24 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2523,6 +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("allow_root", allow_root, 1), FUSE_OPT_END };