diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-05-10 14:08:38 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-05-18 11:45:31 +0200 |
commit | 390ada6ec79b0480a44da1fa81a63dcaf5c81da7 (patch) | |
tree | da146da0b60a3107dafa01bda0a18bea71f1aa61 /source4/torture/rap | |
parent | b8268cf7b0264ea28f684cbdfbf462e68a018d83 (diff) | |
download | samba-390ada6ec79b0480a44da1fa81a63dcaf5c81da7.tar.gz samba-390ada6ec79b0480a44da1fa81a63dcaf5c81da7.tar.bz2 samba-390ada6ec79b0480a44da1fa81a63dcaf5c81da7.zip |
Remove more usages of iconv_convenience in files which were apparently not recompiled by waf.
Diffstat (limited to 'source4/torture/rap')
-rw-r--r-- | source4/torture/rap/rap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rap/rap.c b/source4/torture/rap/rap.c index 37edd20ed7..6543abd9f9 100644 --- a/source4/torture/rap/rap.c +++ b/source4/torture/rap/rap.c @@ -1594,7 +1594,7 @@ NTSTATUS smbcli_rap_netuserpasswordset2(struct smbcli_tree *tree, struct rap_call *call; NTSTATUS result = NT_STATUS_UNSUCCESSFUL; - if (!(call = new_rap_cli_call(mem_ctx, iconv_convenience, RAP_WUserPasswordSet2))) { + if (!(call = new_rap_cli_call(mem_ctx, RAP_WUserPasswordSet2))) { return NT_STATUS_NO_MEMORY; } @@ -1616,7 +1616,7 @@ NTSTATUS smbcli_rap_netuserpasswordset2(struct smbcli_tree *tree, NDR_PRINT_IN_DEBUG(rap_NetUserPasswordSet2, r); } - result = rap_cli_do_call(tree, iconv_convenience, call); + result = rap_cli_do_call(tree, call); if (!NT_STATUS_IS_OK(result)) goto done; |