diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-08-30 21:00:06 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-08-30 21:00:06 +0000 |
commit | b8159f25a64f3163d5b2f544bf87027977935076 (patch) | |
tree | e9ebebfe8f77a584dc5d76b13fb3bc78231ddd7f /bin | |
parent | 8eadf7eac32521c7ae0c98c2224d29318ed9be00 (diff) |
remove -W from synopsis;
from nikolay kalev; ok deraadt@
Diffstat (limited to 'bin')
-rw-r--r-- | bin/rm/rm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index e7edf6ebcb4..b61cdf6ebaf 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rm.c,v 1.18 2005/06/14 19:15:35 millert Exp $ */ +/* $OpenBSD: rm.c,v 1.19 2005/08/30 21:00:05 jmc Exp $ */ /* $NetBSD: rm.c,v 1.19 1995/09/07 06:48:50 jtc Exp $ */ /*- @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)rm.c 8.8 (Berkeley) 4/27/95"; #else -static char rcsid[] = "$OpenBSD: rm.c,v 1.18 2005/06/14 19:15:35 millert Exp $"; +static char rcsid[] = "$OpenBSD: rm.c,v 1.19 2005/08/30 21:00:05 jmc Exp $"; #endif #endif /* not lint */ @@ -421,6 +421,6 @@ checkdot(char **argv) void usage(void) { - (void)fprintf(stderr, "usage: %s [-dfiPRrW] file ...\n", __progname); + (void)fprintf(stderr, "usage: %s [-dfiPRr] file ...\n", __progname); exit(1); } |