From: Karel Zak Date: Fri, 26 Jun 2009 07:49:40 +0000 (+0200) Subject: umount: clean up help output X-Git-Tag: v2.16-rc1~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea1498bf601a9046f29a3ce276585202b23ba278;p=thirdparty%2Futil-linux.git umount: clean up help output Addresses-Debian-Bug: #320500 Signed-off-by: Karel Zak --- diff --git a/mount/umount.c b/mount/umount.c index 9901a809e6..0468cb4496 100644 --- a/mount/umount.c +++ b/mount/umount.c @@ -393,9 +393,9 @@ static struct option longopts[] = static void usage (FILE *fp, int n) { - fprintf (fp, _("Usage: umount [-hV]\n" - " umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n" - " umount [-f] [-r] [-n] [-v] special | node...\n")); + fprintf (fp, _("Usage: umount -h | -V\n" + " umount -a [-d] [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n" + " umount [-d] [-f] [-r] [-n] [-v] special | node...\n")); exit (n); }