From e26c0d0431fef925c15e07c6df34ee6500a7255b Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 26 Nov 2024 00:28:43 -0500 Subject: [PATCH] fuse2fs: fix fuse2fs --helpfull https://github.com/tytso/e2fsprogs/issues/204 Signed-off-by: Theodore Ts'o --- misc/fuse2fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index 0129386..a6390ab 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -3775,7 +3775,7 @@ static int fuse2fs_opt_proc(void *data, const char *arg, "\n", outargs->argv[0]); if (key == FUSE2FS_HELPFULL) { - fuse_opt_add_arg(outargs, "-ho"); + fuse_opt_add_arg(outargs, "-h"); fuse_main(outargs->argc, outargs->argv, &fs_ops, NULL); } else { fprintf(stderr, "Try --helpfull to get a list of " -- 1.8.3.1