diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-13 22:46:17 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:49:58 +0100 |
commit | a2cea02584256e2cf59da5420e8e080e70c66939 (patch) | |
tree | e02e1efee04100bf7640da0dabdc8fe069aa00fe /source4/kdc | |
parent | d891c0c74a03d797aed1c5ac0329fd9d1d78da63 (diff) | |
download | samba-a2cea02584256e2cf59da5420e8e080e70c66939.tar.gz samba-a2cea02584256e2cf59da5420e8e080e70c66939.tar.bz2 samba-a2cea02584256e2cf59da5420e8e080e70c66939.zip |
r26430: require explicit specification of loadparm context.
(This used to be commit 1b947fe0e6e16318e5a8127bb4932d6b5d20bcf6)
Diffstat (limited to 'source4/kdc')
-rw-r--r-- | source4/kdc/kpasswdd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/kpasswdd.c b/source4/kdc/kpasswdd.c index 0a3bfe1219..f468fea6c4 100644 --- a/source4/kdc/kpasswdd.c +++ b/source4/kdc/kpasswdd.c @@ -474,7 +474,7 @@ bool kpasswdd_process(struct kdc_server *kdc, * we already have, rather than a new context */ cli_credentials_set_krb5_context(server_credentials, kdc->smb_krb5_context); cli_credentials_set_conf(server_credentials, kdc->task->lp_ctx); - nt_status = cli_credentials_set_stored_principal(server_credentials, "kadmin/changepw"); + nt_status = cli_credentials_set_stored_principal(server_credentials, kdc->task->lp_ctx, "kadmin/changepw"); if (!NT_STATUS_IS_OK(nt_status)) { ret = kpasswdd_make_unauth_error_reply(kdc, mem_ctx, KRB5_KPASSWD_HARDERROR, |