diff options
author | 1996-11-01 11:30:33 +0000 | |
---|---|---|
committer | 1996-11-01 11:30:33 +0000 | |
commit | be8fde6bb24578eed718626d4e2b2c04c14aee59 (patch) | |
tree | 5789bdad7ae17ed2bb45a2b2eb5cda74aee22d19 | |
parent | Pull in changes from Manuel. (diff) | |
download | wireguard-openbsd-be8fde6bb24578eed718626d4e2b2c04c14aee59.tar.xz wireguard-openbsd-be8fde6bb24578eed718626d4e2b2c04c14aee59.zip |
argument type nit
-rw-r--r-- | libexec/rshd/rshd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index dc2ef671d3a..6b5ca198792 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.7 1996/10/26 04:37:29 millert Exp $"; +static char *rcsid = "$Id: rshd.c,v 1.8 1996/11/01 11:30:33 niklas Exp $"; #endif /* not lint */ /* @@ -406,7 +406,8 @@ doit(fromp) rc = krb_recvauth(authopts, 0, ticket, "rcmd", instance, &fromaddr, (struct sockaddr_in *) 0, - kdata, "", (bit_64 *) 0, version); + kdata, "", (struct des_ks_struct *) 0, + version); if (rc != KSUCCESS) { error("Kerberos authentication failure: %s\n", krb_err_txt[rc]); |