adapt to new signature of krb5_get_init_creds_opt_set_pkinit

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14295 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2004-10-07 10:20:41 +00:00
parent aa710fc27f
commit c4cacd7a06

View File

@@ -463,13 +463,14 @@ get_new_tickets(krb5_context context,
if (pk_use_dh == 1) if (pk_use_dh == 1)
flags |= 1; flags |= 1;
ret = krb5_get_init_creds_opt_set_pkinit(context, opt, ret = krb5_get_init_creds_opt_set_pkinit(context, opt,
principal,
pk_user_id, pk_user_id,
pk_x509_anchors, pk_x509_anchors,
flags, flags,
NULL, NULL,
NULL); NULL);
if (ret) if (ret)
krb5_err(context, 1, ret, "set_pkinit"); krb5_err(context, 1, ret, "krb5_get_init_creds_opt_set_pkinit");
} }
if (!addrs_flag) { if (!addrs_flag) {