summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Görgens <matthias.goergens@gmail.com>2023-04-06 20:26:22 +0800
committerGitHub <noreply@github.com>2023-04-06 13:26:22 +0100
commit1edfed0e18b79629330ca419e782fcb7318e85bd (patch)
tree54f7c43e7776e0814f27fb06a680f1ad05cd5e1d
parentc60a90b73971706f525fc7e3289291636f50caa5 (diff)
downloadfuse-1edfed0e18b79629330ca419e782fcb7318e85bd.tar.gz
Add long `--options` to fusermount (#764)
Mostly for consistency with mount(8). Co-authored-by: Nikolaus Rath <Nikolaus@rath.org>
-rw-r--r--util/fusermount.c1
1 files changed, 1 insertions, 0 deletions
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");