From: Mike Frysinger Date: Tue, 10 Jan 2012 02:17:57 +0000 (-0500) Subject: mke2fs: fix -T/-t usage output X-Git-Tag: v1.42.1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65794cf159aa051ea3fe79db1950f562600b252e;p=thirdparty%2Fe2fsprogs.git mke2fs: fix -T/-t usage output There is a slight desync between the mke2fs(8) man page and the mke2fs help output when it comes to the -t/-T options. Since the man page is correct, update the mke2fs usage string to match. Reported-by: Ben Kohler Signed-off-by: Mike Frysinger Signed-off-by: Theodore Ts'o --- diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 0ef253174..e97e44e63 100644 --- a/misc/mke2fs.c +++ b/misc/mke2fs.c @@ -121,7 +121,8 @@ static void usage(void) "\t[-g blocks-per-group] [-L volume-label] " "[-M last-mounted-directory]\n\t[-O feature[,...]] " "[-r fs-revision] [-E extended-option[,...]]\n" - "\t[-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]\n"), + "\t[-t fs-type] [-T usage-type ] [-U UUID] " + "[-jnqvFKSV] device [blocks-count]\n"), program_name); exit(1); }