add krb5_get_init_creds_opt_set_process_last_req

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24263 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-01-11 21:45:46 +00:00
parent dd466c586f
commit f5daf6dd27

View File

@@ -346,6 +346,25 @@ krb5_get_init_creds_opt_set_win2k(krb5_context context,
return 0;
}
krb5_error_code KRB5_LIB_FUNCTION
krb5_get_init_creds_opt_set_process_last_req(krb5_context context,
krb5_get_init_creds_opt *opt,
krb5_gic_process_last_req func,
void *ctx)
{
krb5_error_code ret;
ret = require_ext_opt(context, opt, "init_creds_opt_set_win2k");
if (ret)
return ret;
opt->opt_private->lr.func = func;
opt->opt_private->lr.ctx = ctx;
return 0;
}
#ifndef HEIMDAL_SMALLER
void KRB5_LIB_FUNCTION