diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-17 07:16:44 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-17 07:16:44 +0000 |
commit | 5aff9a017777d287ebc79593230480db84780bec (patch) | |
tree | e62bfa3790fdd034ea53867a568af0eb773f7ae9 /usr.bin/rsh | |
parent | 2c454e4c0516f2e05dbc8ea857ddf2aa0a9acba9 (diff) |
Make encrypted remote shell work again. Note that this is not a supported
configuration, and no port number is defined for it.
Diffstat (limited to 'usr.bin/rsh')
-rw-r--r-- | usr.bin/rsh/rsh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rsh/rsh.c b/usr.bin/rsh/rsh.c index 2f84e0dd489..f80af10fa7a 100644 --- a/usr.bin/rsh/rsh.c +++ b/usr.bin/rsh/rsh.c @@ -39,12 +39,12 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)rsh.c 5.24 (Berkeley) 7/1/91";*/ -static char rcsid[] = "$Id: rsh.c,v 1.2 1995/12/16 22:20:36 tholo Exp $"; +static char rcsid[] = "$Id: rsh.c,v 1.3 1996/04/17 07:16:43 tholo Exp $"; #endif /* not lint */ /* * $Source: /cvs/OpenBSD/src/usr.bin/rsh/rsh.c,v $ - * $Header: /cvs/OpenBSD/src/usr.bin/rsh/rsh.c,v 1.2 1995/12/16 22:20:36 tholo Exp $ + * $Header: /cvs/OpenBSD/src/usr.bin/rsh/rsh.c,v 1.3 1996/04/17 07:16:43 tholo Exp $ */ #include <sys/types.h> @@ -149,7 +149,7 @@ main(argc, argv) #ifdef KERBEROS case 'x': doencrypt = 1; - des_set_key(&cred.session, schedule); + desrw_set_key(&cred.session, schedule); break; #endif case '?': |