From: Marco Benatto Date: Mon, 5 Feb 2018 20:41:24 +0000 (-0600) Subject: xfs_mdrestore: Add -i option to built-in help X-Git-Tag: v4.15.0-rc1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=720eec0f83c4adce70629d5d0f217595fa4b1f31;p=thirdparty%2Fxfsprogs-dev.git xfs_mdrestore: Add -i option to built-in help Currently we are missing -i option from usage(). This patch adds it to this biult-in help. Signed-off-by: Marco A Benatto Reviewed-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/mdrestore/xfs_mdrestore.c b/mdrestore/xfs_mdrestore.c index c49c13aa5..0bb4ac8df 100644 --- a/mdrestore/xfs_mdrestore.c +++ b/mdrestore/xfs_mdrestore.c @@ -194,7 +194,7 @@ perform_restore( static void usage(void) { - fprintf(stderr, "Usage: %s [-V] [-g] source target\n", progname); + fprintf(stderr, "Usage: %s [-V] [-g] [-i] source target\n", progname); exit(1); }