update to new heimdal libkrb5

This commit is contained in:
assar 2001-02-13 16:58:04 +00:00
parent e0c026600d
commit e25a9ea1d2

View File

@ -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;
}