From 87602b09ead198bd84c0dac83fde2d1c3dfe55bd Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 3 Aug 2012 22:38:41 +0100 Subject: [PATCH] fuse: guestmount doesn't let you pass '-- [FUSE options]'. I don't think it ever did, so the --help text was always wrong, and definitely didn't match the real behaviour of the program. --- fuse/guestmount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuse/guestmount.c b/fuse/guestmount.c index fd3172607..17e94ba87 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -105,7 +105,7 @@ usage (int status) "%s lets you mount a virtual machine filesystem\n" "Copyright (C) 2009-2012 Red Hat Inc.\n" "Usage:\n" - " %s [--options] [-- [--FUSE-options]] mountpoint\n" + " %s [--options] mountpoint\n" "Options:\n" " -a|--add image Add image\n" " -c|--connect uri Specify libvirt URI for -d option\n"