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/nsswitch | |
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/nsswitch')
-rw-r--r-- | source4/nsswitch/wbinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/nsswitch/wbinfo.c b/source4/nsswitch/wbinfo.c index a36a66b80f..60c95a3bd0 100644 --- a/source4/nsswitch/wbinfo.c +++ b/source4/nsswitch/wbinfo.c @@ -836,7 +836,7 @@ static bool wbinfo_auth_crap(struct loadparm_context *lp_ctx, char *username) server_chal = data_blob(request.data.auth_crap.chal, 8); /* Pretend this is a login to 'us', for blob purposes */ - names_blob = NTLMv2_generate_names_blob(mem_ctx, lp_iconv_convenience(lp_ctx), lp_netbios_name(lp_ctx), lp_workgroup(lp_ctx)); + names_blob = NTLMv2_generate_names_blob(mem_ctx, lp_netbios_name(lp_ctx), lp_workgroup(lp_ctx)); if (!SMBNTLMv2encrypt(mem_ctx, name_user, name_domain, pass, &server_chal, &names_blob, |