1 #include <k5-int.h> 2 3 void KRB5_CALLCONV krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt * opt)4krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *opt) 5 { 6 opt->flags = 0; 7 } 8 9 void KRB5_CALLCONV krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt * opt,int ap_req_nofail)10krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *opt, int ap_req_nofail) 11 { 12 opt->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL; 13 opt->ap_req_nofail = ap_req_nofail; 14 } 15