Commit
5fd5a67c5a93514e7d0a64425baa007ad91f57de switched ksu from
using krb5_get_in_tkt_with_password() to
krb5_get_init_creds_password(), but did not supply a prompter
argument. Pass krb5_prompter_posix so that clpreauth modules can
prompt for additional information during authentication.
(cherry picked from commit
23a16fb5eac733880e34a770882ed17b93b5d66c)
ticket: 8340
version_fixed: 1.13.4
tags: -pullup
status: resolved
}
code = krb5_get_init_creds_password(context, &creds, client, password,
- NULL, NULL, 0, NULL, options);
+ krb5_prompter_posix, NULL, 0, NULL,
+ options);
memset(password, 0, sizeof(password));