From 390ada6ec79b0480a44da1fa81a63dcaf5c81da7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 10 May 2010 14:08:38 +0200 Subject: Remove more usages of iconv_convenience in files which were apparently not recompiled by waf. --- source4/torture/rap/rap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/rap/rap.c') 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; -- cgit