summaryrefslogtreecommitdiffstats
path: root/sys-utils/mount.c
diff options
context:
space:
mode:
authorBenno Schulenberg2015-08-01 10:23:09 +0200
committerKarel Zak2015-08-03 11:19:02 +0200
commit89de71b3476ecc2713736673a3850059d07d5121 (patch)
treecb47e22d1a29497e6c94ac34f6ee609300e87aff /sys-utils/mount.c
parentlslocks: slice up the recently modified usage text (diff)
downloadkernel-qcow2-util-linux-89de71b3476ecc2713736673a3850059d07d5121.tar.gz
kernel-qcow2-util-linux-89de71b3476ecc2713736673a3850059d07d5121.tar.xz
kernel-qcow2-util-linux-89de71b3476ecc2713736673a3850059d07d5121.zip
mount: remove duplications of --help and --version from usage text
And slice up the affected portions. Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'sys-utils/mount.c')
-rw-r--r--sys-utils/mount.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys-utils/mount.c b/sys-utils/mount.c
index c650efef2..c22c8c996 100644
--- a/sys-utils/mount.c
+++ b/sys-utils/mount.c
@@ -732,9 +732,10 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
" -F, --fork fork off for each device (use with -a)\n"
" -T, --fstab <path> alternative file to /etc/fstab\n"));
fprintf(out, _(
- " -h, --help display this help text and exit\n"
- " -i, --internal-only don't call the mount.<type> helpers\n"
- " -l, --show-labels lists all mounts with LABELs\n"
+ " -i, --internal-only don't call the mount.<type> helpers\n"));
+ fprintf(out, _(
+ " -l, --show-labels show also filesystem labels\n"));
+ fprintf(out, _(
" -n, --no-mtab don't write to /etc/mtab\n"));
fprintf(out, _(
" -o, --options <list> comma-separated list of mount options\n"
@@ -745,8 +746,8 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
" --source <src> explicitly specifies source (path, label, uuid)\n"
" --target <target> explicitly specifies mountpoint\n"));
fprintf(out, _(
- " -v, --verbose say what is being done\n"
- " -V, --version display version information and exit\n"
+ " -v, --verbose say what is being done\n"));
+ fprintf(out, _(
" -w, --rw, --read-write mount the filesystem read-write (default)\n"));
fputs(USAGE_SEPARATOR, out);