summaryrefslogtreecommitdiffstats
path: root/usr.bin/rsh
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-01-14 20:36:22 +0000
committerwollman <wollman@FreeBSD.org>1995-01-14 20:36:22 +0000
commit6c5a798a0c76a69551a6b0c0c58b1e6638387ae5 (patch)
tree91bf2a8af64dfa47455870f40ffd264796b81493 /usr.bin/rsh
parentad9893838a2cffc94ca21a768eb066e5de3c183b (diff)
downloadFreeBSD-src-6c5a798a0c76a69551a6b0c0c58b1e6638387ae5.zip
FreeBSD-src-6c5a798a0c76a69551a6b0c0c58b1e6638387ae5.tar.gz
Fix Sharnoff complain bin/136 (-e flag doesn't work).
Diffstat (limited to 'usr.bin/rsh')
-rw-r--r--usr.bin/rsh/rsh.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/usr.bin/rsh/rsh.c b/usr.bin/rsh/rsh.c
index 49c5b86..2d2d49d 100644
--- a/usr.bin/rsh/rsh.c
+++ b/usr.bin/rsh/rsh.c
@@ -38,14 +38,11 @@ static char copyright[] =
#endif /* not lint */
#ifndef lint
-static char sccsid[] = "@(#)rsh.c 8.3 (Berkeley) 4/6/94";
+static char sccsid[] = "From: @(#)rsh.c 8.3 (Berkeley) 4/6/94";
+static char rcsid[] =
+ "$Id$";
#endif /* not lint */
-/*
- * $Source: /home/ncvs/src/usr.bin/rsh/rsh.c,v $
- * $Header: /home/ncvs/src/usr.bin/rsh/rsh.c,v 1.1.1.1 1994/05/27 12:32:35 rgrimes Exp $
- */
-
#include <sys/types.h>
#include <sys/signal.h>
#include <sys/socket.h>
@@ -124,12 +121,12 @@ main(argc, argv)
#ifdef KERBEROS
#ifdef CRYPT
-#define OPTIONS "8KLdek:l:nwx"
+#define OPTIONS "8KLde:k:l:nwx"
#else
-#define OPTIONS "8KLdek:l:nw"
+#define OPTIONS "8KLde:k:l:nw"
#endif
#else
-#define OPTIONS "8KLdel:nw"
+#define OPTIONS "8KLde:l:nw"
#endif
while ((ch = getopt(argc - argoff, argv + argoff, OPTIONS)) != EOF)
switch(ch) {
@@ -478,3 +475,4 @@ usage()
#endif
exit(1);
}
+
OpenPOWER on IntegriCloud