From: Matthias Görgens Date: Thu, 6 Apr 2023 12:26:22 +0000 (+0800) Subject: Add long `--options` to fusermount (#764) X-Git-Tag: fuse-3.15.0~27 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1edfed0e18b79629330ca419e782fcb7318e85bd;p=qemu-gpiodev%2Flibfuse.git Add long `--options` to fusermount (#764) Mostly for consistency with mount(8). Co-authored-by: Nikolaus Rath --- diff --git a/util/fusermount.c b/util/fusermount.c index 850cf6b..32d3fbd 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -1363,6 +1363,7 @@ int main(int argc, char *argv[]) {"quiet", no_argument, NULL, 'q'}, {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'V'}, + {"options", required_argument, NULL, 'o'}, {0, 0, 0, 0}}; progname = strdup(argc > 0 ? argv[0] : "fusermount");