Whamcloud - gitweb
mke2fs: fix -T/-t usage output
authorMike Frysinger <vapier@gentoo.org>
Tue, 10 Jan 2012 02:17:57 +0000 (21:17 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 10 Jan 2012 02:17:57 +0000 (21:17 -0500)
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>
misc/mke2fs.c

index 0ef2531..e97e44e 100644 (file)
@@ -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);
 }