diff options
author | assar <assar@FreeBSD.org> | 2001-02-13 16:58:04 +0000 |
---|---|---|
committer | assar <assar@FreeBSD.org> | 2001-02-13 16:58:04 +0000 |
commit | e25a9ea1d2550c67cfdc3ed8dc1de0d54b278b12 (patch) | |
tree | aa9f2f3bbf7c4174e27962bb51cc7a76fada6958 /crypto/openssh | |
parent | e0c026600db2ed38e34dc46d40214dc3716ca21c (diff) | |
download | FreeBSD-src-e25a9ea1d2550c67cfdc3ed8dc1de0d54b278b12.zip FreeBSD-src-e25a9ea1d2550c67cfdc3ed8dc1de0d54b278b12.tar.gz |
update to new heimdal libkrb5
Diffstat (limited to 'crypto/openssh')
-rw-r--r-- | crypto/openssh/auth-krb5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/auth-krb5.c b/crypto/openssh/auth-krb5.c index 183243e..b5205ec 100644 --- a/crypto/openssh/auth-krb5.c +++ b/crypto/openssh/auth-krb5.c @@ -71,7 +71,7 @@ auth_krb5(const char* server_user, krb5_data *auth, krb5_principal *client) } /* if client wants mutual auth */ - problem = krb5_mk_rep(ssh_context, &auth_context, &reply); + problem = krb5_mk_rep(ssh_context, auth_context, &reply); if (problem) { ret = 0; goto err; @@ -115,7 +115,7 @@ auth_krb5_tgt(char *server_user, krb5_data *tgt, krb5_principal tkt_client) goto fail; } - problem = krb5_rd_cred(ssh_context, auth_context, ccache, tgt); + problem = krb5_rd_cred2(ssh_context, auth_context, ccache, tgt); if (problem) { goto fail; } |