summaryrefslogtreecommitdiff
path: root/lib/util/charset/codepoints.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-09-10 09:53:29 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-09-10 14:18:06 +0200
commit2085dffddb36e8ac3cfe83c3f318d49c96408274 (patch)
treeb8d4af8d35a3cea3b0fa41eebc406e8b7f2103fe /lib/util/charset/codepoints.c
parentfc6bb5d47a985d0215c2a8ea9a00c21abf131ad9 (diff)
downloadsamba-2085dffddb36e8ac3cfe83c3f318d49c96408274.tar.gz
samba-2085dffddb36e8ac3cfe83c3f318d49c96408274.tar.bz2
samba-2085dffddb36e8ac3cfe83c3f318d49c96408274.zip
lib/util/charset Run charset sets with and without the system iconv
We need to know that we can load the samba-provided modules, and that they are correct. However, we must mark a number of tests as knownfail due to errors in our internal iconv modules. Andrew Bartlett
Diffstat (limited to 'lib/util/charset/codepoints.c')
-rw-r--r--lib/util/charset/codepoints.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/util/charset/codepoints.c b/lib/util/charset/codepoints.c
index 8cc33a9782..0d1020f7a0 100644
--- a/lib/util/charset/codepoints.c
+++ b/lib/util/charset/codepoints.c
@@ -174,10 +174,11 @@ struct smb_iconv_handle *get_iconv_handle(void)
struct smb_iconv_handle *get_iconv_testing_handle(TALLOC_CTX *mem_ctx,
const char *dos_charset,
- const char *unix_charset)
+ const char *unix_charset,
+ bool native_iconv)
{
return smb_iconv_handle_reinit(mem_ctx,
- dos_charset, unix_charset, true, NULL);
+ dos_charset, unix_charset, native_iconv, NULL);
}
/**