diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-04-26 16:23:49 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-04-26 16:23:49 +0000 |
commit | ac30206f11bfd39435b67fedc96e960820de71ff (patch) | |
tree | 8f1baf61aabf0e6e5420a943d24353825824fd16 /bin/mt/mt.c | |
parent | 6e5845073dbe0c4d3009e926ef0a224e6b4fd2cf (diff) |
- do not list -f option for eject, as it is not necessary
- tidy up the options list somewhat to avoid confusion
- sync usage()
started by a diff from tom@ and ok'd by him;
Diffstat (limited to 'bin/mt/mt.c')
-rw-r--r-- | bin/mt/mt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/mt/mt.c b/bin/mt/mt.c index 61b59937089..c517d8c8de5 100644 --- a/bin/mt/mt.c +++ b/bin/mt/mt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mt.c,v 1.23 2003/06/02 23:32:08 millert Exp $ */ +/* $OpenBSD: mt.c,v 1.24 2005/04/26 16:23:48 jmc Exp $ */ /* $NetBSD: mt.c,v 1.14.2.1 1996/05/27 15:12:11 mrg Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mt.c 8.2 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: mt.c,v 1.23 2003/06/02 23:32:08 millert Exp $"; +static char rcsid[] = "$OpenBSD: mt.c,v 1.24 2005/04/26 16:23:48 jmc Exp $"; #endif #endif /* not lint */ @@ -298,9 +298,9 @@ void usage(void) { if (eject) - (void)fprintf(stderr, "usage: %s [-f] device\n", progname); + (void)fprintf(stderr, "usage: %s device\n", progname); else (void)fprintf(stderr, - "usage: %s [-f device] command [ count ]\n", progname); + "usage: %s [-f device] command [count]\n", progname); exit(X_USAGE); } |