summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/providers/krb5/krb5_child.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
index eb999ede..27c3dde3 100644
--- a/src/providers/krb5/krb5_child.c
+++ b/src/providers/krb5/krb5_child.c
@@ -1102,9 +1102,9 @@ static errno_t changepw_child(struct krb5_req *kr, bool prelim)
memset(&result_code_string, 0, sizeof(krb5_data));
memset(&result_string, 0, sizeof(krb5_data));
- kerr = krb5_change_password(kr->ctx, kr->creds,
- discard_const(newpassword), &result_code,
- &result_code_string, &result_string);
+ kerr = krb5_set_password(kr->ctx, kr->creds,
+ discard_const(newpassword), NULL,
+ &result_code, &result_code_string, &result_string);
if (kerr == KRB5_KDC_UNREACH) {
return ERR_NETWORK_IO;