From: Ralph Ronnquist Date: Thu, 11 Nov 2021 08:11:56 +0000 (+1100) Subject: add sroot option to help text X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=642d7b81a1afa3f4eb607600c89f923823a03b07;p=rrq%2Ffuse_xattrs.git add sroot option to help text --- diff --git a/fuse_xattrs.c b/fuse_xattrs.c index 3539c65..94126dc 100644 --- a/fuse_xattrs.c +++ b/fuse_xattrs.c @@ -244,16 +244,17 @@ static int xattrs_opt_proc(void *data, const char *arg, int key, case KEY_HELP: fprintf(stderr, "usage: %s source_dir mountpoint [options]\n" - "\n" - "general options:\n" - " -o opt,[opt...] mount options\n" - " -h --help print help\n" - " -V --version print version\n" - "\n" - "FUSE XATTRS options:\n" - " -o show_sidecar don't hide sidecar files\n" - " -o enable_namespaces enable namespaces checks\n" - "\n", outargs->argv[0]); + "\n" + "general options:\n" + " -o opt,[opt...] mount options\n" + " -h --help print help\n" + " -V --version print version\n" + "\n" + "FUSE XATTRS options:\n" + " -o show_sidecar don't hide sidecar files\n" + " -o enable_namespaces enable namespaces checks\n" + " -o sroot=path use other sidecar root path\n" + "\n", outargs->argv[0]); fuse_opt_add_arg(outargs, "-ho"); fuse_main(outargs->argc, outargs->argv, &xmp_oper, NULL);