diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-17 07:20:02 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-17 07:20:02 +0000 |
commit | ce4035b908401ef16a8e73a7df71d7efb5bcaf6e (patch) | |
tree | 322a0f22d506d1ecbf93260dd919fc0cba9e236d | |
parent | de5a070af0e910bac03e3b4fde31f11c92a98ca5 (diff) |
Make encrypted kerberos remote shell work again. Note that this is not
a supported configuration, and no port number is defined for it.
-rw-r--r-- | libexec/rshd/rshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index d85fc68faa9..dd9f251ca79 100644 --- a/libexec/rshd/rshd.c +++ b/libexec/rshd/rshd.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)rshd.c 8.2 (Berkeley) 4/6/94"; */ -static char *rcsid = "$Id: rshd.c,v 1.3 1995/12/16 22:20:23 tholo Exp $"; +static char *rcsid = "$Id: rshd.c,v 1.4 1996/04/17 07:20:01 tholo Exp $"; #endif /* not lint */ /* @@ -398,7 +398,7 @@ doit(fromp) "rcmd", instance, &fromaddr, &local_addr, kdata, "", schedule, version); - des_set_key(kdata->session, schedule); + desrw_set_key(kdata->session, schedule); } else #endif rc = krb_recvauth(authopts, 0, ticket, "rcmd", |