summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/krb/vic_opt.c
blob: acdf4940611454b6f338e8d3b7915297df78b549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "k5-int.h"

void KRB5_CALLCONV
krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *opt)
{
   opt->flags = 0;
}

void KRB5_CALLCONV
krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *opt, int ap_req_nofail)
{
   opt->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL;
   opt->ap_req_nofail = ap_req_nofail;
}