diff options
author | charnier <charnier@FreeBSD.org> | 1997-06-19 14:44:24 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-06-19 14:44:24 +0000 |
commit | 8e9b467863393231854d6a580e2157e48ba1e8a9 (patch) | |
tree | 35fccb352b147fa1c35816195e97fcc016f13a1c /sbin/umount | |
parent | c50254e7ea1f39fb8de6a7a6eeffb2856ad59442 (diff) | |
download | FreeBSD-src-8e9b467863393231854d6a580e2157e48ba1e8a9.zip FreeBSD-src-8e9b467863393231854d6a580e2157e48ba1e8a9.tar.gz |
Sync usage string according to man page.
Diffstat (limited to 'sbin/umount')
-rw-r--r-- | sbin/umount/umount.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c index 6c54b35..f4951e4 100644 --- a/sbin/umount/umount.c +++ b/sbin/umount/umount.c @@ -377,9 +377,8 @@ xdr_dir(xdrsp, dirp) void usage() { - (void)fprintf(stderr, - "usage: %s\n %s\n", - "umount [-fv] [-t fstypelist] special | node", - "umount -a[fv] [-h host] [-t fstypelist]"); + (void)fprintf(stderr, "%s\n%s\n", + "usage: umount [-fv] special | node", + " umount -a | -A [-fv] [-h host] [-t type]"); exit(1); } |