summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2007-03-20 15:48:11 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2007-03-20 15:48:11 +0000
commit9416a4d0e5e4ce116605f43bc28350b834385776 (patch)
tree75027552ce19496ca6be5cdbd5978ce76be8f38c /usr.bin
parentc90d907dddfe25ab61c854a9d9ab55f1d38594f3 (diff)
remove -K from usage();
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/rsh/rsh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rsh/rsh.c b/usr.bin/rsh/rsh.c
index 39a693501de..911e6b9d318 100644
--- a/usr.bin/rsh/rsh.c
+++ b/usr.bin/rsh/rsh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsh.c,v 1.38 2005/07/04 01:54:10 djm Exp $ */
+/* $OpenBSD: rsh.c,v 1.39 2007/03/20 15:48:10 jmc Exp $ */
/*-
* Copyright (c) 1983, 1990 The Regents of the University of California.
@@ -37,7 +37,7 @@ static const char copyright[] =
#ifndef lint
/*static const char sccsid[] = "from: @(#)rsh.c 5.24 (Berkeley) 7/1/91";*/
-static const char rcsid[] = "$OpenBSD: rsh.c,v 1.38 2005/07/04 01:54:10 djm Exp $";
+static const char rcsid[] = "$OpenBSD: rsh.c,v 1.39 2007/03/20 15:48:10 jmc Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -311,6 +311,6 @@ __dead void
usage(void)
{
(void)fprintf(stderr,
- "usage: rsh [-Kdn] [-l username] hostname [command]\n");
+ "usage: rsh [-dn] [-l username] hostname [command]\n");
exit(1);
}