summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-01-09 21:17:57 -0500
committerTheodore Ts'o <tytso@mit.edu>2012-01-09 21:17:57 -0500
commit65794cf159aa051ea3fe79db1950f562600b252e (patch)
treef0e5131c39a0160ba9b1a54237f9303362cf2643
parent9288e3be665bb8d5657d7f710687a50fad859acf (diff)
downloade2fsprogs-65794cf159aa051ea3fe79db1950f562600b252e.tar.gz
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 <bkohler@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--misc/mke2fs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/mke2fs.c b/misc/mke2fs.c
index 0ef25317..e97e44e6 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);
}