summaryrefslogtreecommitdiffstats
path: root/disk-utils/mkfs.c
diff options
context:
space:
mode:
authorPhillip Susi2014-02-07 23:01:20 +0100
committerKarel Zak2014-02-10 18:58:39 +0100
commitb5ab5bec7392a1b5de271ce6299ef9e355187652 (patch)
treed8c866222f6e519aa548120787d8bb8c02ddf7d8 /disk-utils/mkfs.c
parenthwclock: internationalizing the message of the used interface (diff)
downloadkernel-qcow2-util-linux-b5ab5bec7392a1b5de271ce6299ef9e355187652.tar.gz
kernel-qcow2-util-linux-b5ab5bec7392a1b5de271ce6299ef9e355187652.tar.xz
kernel-qcow2-util-linux-b5ab5bec7392a1b5de271ce6299ef9e355187652.zip
fix mkfs --verbose and man page
mkfs did not actually accept the long form --verbose option. Also the man page seemed to indicate that version/verbose/help options were passed to the filesystem specific utility when this is not the case. Signed-off-by: Phillip Susi <psusi@ubuntu.com>
Diffstat (limited to 'disk-utils/mkfs.c')
-rw-r--r--disk-utils/mkfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/disk-utils/mkfs.c b/disk-utils/mkfs.c
index a6795cb0e..cb34951b2 100644
--- a/disk-utils/mkfs.c
+++ b/disk-utils/mkfs.c
@@ -73,6 +73,7 @@ int main(int argc, char **argv)
static const struct option longopts[] = {
{"type", required_argument, NULL, 't'},
{"version", no_argument, NULL, VERSION_OPTION},
+ {"verbose", no_argument, NULL, 'V'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, 0}
};