summaryrefslogtreecommitdiff
path: root/source4/torture/rap
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-05-14 17:39:07 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-05-18 11:45:31 +0200
commitc0fb7b8180f7383590f24e84cc3700aa77499112 (patch)
tree0a2ee2b75ab6b6f7cd2c27e4a5832457cad0c135 /source4/torture/rap
parent390ada6ec79b0480a44da1fa81a63dcaf5c81da7 (diff)
downloadsamba-c0fb7b8180f7383590f24e84cc3700aa77499112.tar.gz
s3: Fix some more iconv convenience usages.
Diffstat (limited to 'source4/torture/rap')
-rw-r--r--source4/torture/rap/rap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/rap/rap.c b/source4/torture/rap/rap.c
index 6543abd9f98..e0c92778695 100644
--- a/source4/torture/rap/rap.c
+++ b/source4/torture/rap/rap.c
@@ -234,7 +234,7 @@ static NTSTATUS rap_cli_do_call(struct smbcli_tree *tree,
params->flags = RAPNDR_FLAGS;
- data = ndr_push_init_ctx(call, iconv_convenience);
+ data = ndr_push_init_ctx(call);
if (data == NULL)
return NT_STATUS_NO_MEMORY;
@@ -1649,7 +1649,7 @@ NTSTATUS smbcli_rap_netoemchangepassword(struct smbcli_tree *tree,
struct rap_call *call;
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
- if (!(call = new_rap_cli_call(mem_ctx, iconv_convenience, RAP_SamOEMChgPasswordUser2_P))) {
+ if (!(call = new_rap_cli_call(mem_ctx, RAP_SamOEMChgPasswordUser2_P))) {
return NT_STATUS_NO_MEMORY;
}
@@ -1664,7 +1664,7 @@ NTSTATUS smbcli_rap_netoemchangepassword(struct smbcli_tree *tree,
NDR_PRINT_IN_DEBUG(rap_NetOEMChangePassword, 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;