diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-21 15:45:32 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-21 15:45:32 +0100 |
commit | 263a77c5618daddb0c1e4f0ad0a922bca55faf0d (patch) | |
tree | 117a612740901f6822d346d6832e0e1fb33d4abc /source4/auth/auth_util.c | |
parent | ede79ae482b16c3cea65d3019bc1a68f07354e89 (diff) | |
download | samba-263a77c5618daddb0c1e4f0ad0a922bca55faf0d.tar.gz samba-263a77c5618daddb0c1e4f0ad0a922bca55faf0d.tar.xz samba-263a77c5618daddb0c1e4f0ad0a922bca55faf0d.zip |
Remove more uses of global_loadparm.
(This used to be commit a1715b1f48ba44bd94844418cc9299649aaf1a5e)
Diffstat (limited to 'source4/auth/auth_util.c')
-rw-r--r-- | source4/auth/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index b1f0e60507d..5d2bc6bac0f 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -144,7 +144,7 @@ NTSTATUS encrypt_user_info(TALLOC_CTX *mem_ctx, struct auth_context *auth_contex chall_blob = data_blob_talloc(mem_ctx, challenge, 8); if (lp_client_ntlmv2_auth(auth_context->lp_ctx)) { - DATA_BLOB names_blob = NTLMv2_generate_names_blob(mem_ctx, lp_netbios_name(auth_context->lp_ctx), lp_workgroup(auth_context->lp_ctx)); + DATA_BLOB names_blob = NTLMv2_generate_names_blob(mem_ctx, lp_iconv_convenience(auth_context->lp_ctx), lp_netbios_name(auth_context->lp_ctx), lp_workgroup(auth_context->lp_ctx)); DATA_BLOB lmv2_response, ntlmv2_response, lmv2_session_key, ntlmv2_session_key; if (!SMBNTLMv2encrypt_hash(user_info_temp, |