r18931@cathode-dark-space: jaltman | 2006-12-07 17:13:50 -0500
ticket: 3642
Undo revision 18930 which was not supposed to include this
file.
ticket: 3642
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@18968
dc483132-0cff-0310-8789-
dd5450dbe970
void KRB5_CALLCONV
krb5_get_init_creds_opt_init(krb5_get_init_creds_opt *opt)
{
- opt->flags = KRB5_GET_INIT_CREDS_OPT_CHG_PWD_PRMPT;
+ opt->flags = 0;
}
void KRB5_CALLCONV
opt->flags |= KRB5_GET_INIT_CREDS_OPT_SALT;
opt->salt = salt;
}
-
-void KRB5_CALLCONV
-krb5_get_init_creds_opt_set_salt(krb5_get_init_creds_opt *opt, int prompt)
-{
- if (prompt)
- opt->flags |= KRB5_GET_INIT_CREDS_OPT_CHG_PWD_PRMPT;
- else
- opt->flags &= ~KRB5_GET_INIT_CREDS_OPT_CHG_PWD_PRMPT;
-}
-