diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 03:40:09 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 03:40:09 +0200 |
commit | 922a29992ee38b8e1c851192677b89a2cd59a91a (patch) | |
tree | 9ea2826f7fd77b27d16de8be61ca7940fb066bad /source4/auth/ntlm | |
parent | 23b04a31f14dca0a3f9bcd58181f84db4b6092c7 (diff) | |
download | samba-922a29992ee38b8e1c851192677b89a2cd59a91a.tar.gz samba-922a29992ee38b8e1c851192677b89a2cd59a91a.tar.bz2 samba-922a29992ee38b8e1c851192677b89a2cd59a91a.zip |
Remove iconv_convenience parameter from simple string push/pull
functions.
Diffstat (limited to 'source4/auth/ntlm')
-rw-r--r-- | source4/auth/ntlm/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/ntlm/auth_util.c b/source4/auth/ntlm/auth_util.c index 64ceb437ad..2f8ef10e05 100644 --- a/source4/auth/ntlm/auth_util.c +++ b/source4/auth/ntlm/auth_util.c @@ -145,7 +145,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_iconv_convenience(auth_context->lp_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_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, |