diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-13 12:19:33 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:49:53 +0100 |
commit | a5b8999f23d56b4a19b87fc17b22c96f88e487e8 (patch) | |
tree | 2cfc01d253b8d41ed95c7ac90dd6691e27d88681 /source4/auth | |
parent | aa32619c5c910b9f5989f44de21621db5ef7c357 (diff) | |
download | samba-a5b8999f23d56b4a19b87fc17b22c96f88e487e8.tar.gz samba-a5b8999f23d56b4a19b87fc17b22c96f88e487e8.tar.bz2 samba-a5b8999f23d56b4a19b87fc17b22c96f88e487e8.zip |
r26427: Avoid global_smb_iconv_convenience.
(This used to be commit bf072c6fb37b3e6a71c0c747b9fbeaa01480229e)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/ntlm_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/ntlm_check.c b/source4/auth/ntlm_check.c index a0846f00de..55f2595f44 100644 --- a/source4/auth/ntlm_check.c +++ b/source4/auth/ntlm_check.c @@ -320,7 +320,7 @@ NTSTATUS ntlm_password_check(TALLOC_CTX *mem_ctx, mdfour(client_nt.hash, nt_response->data, nt_response->length); if (lm_response->length && - (convert_string_talloc(mem_ctx, global_smb_iconv_convenience, CH_DOS, CH_UNIX, + (convert_string_talloc(mem_ctx, lp_iconv_convenience(lp_ctx), CH_DOS, CH_UNIX, lm_response->data, lm_response->length, (void **)&unix_pw) != -1)) { if (E_deshash(unix_pw, client_lm.hash)) { |