From f9acf770e9c121aa495cb7e19175a4a6e45ff3d9 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 19 Sep 2011 19:13:21 -0700 Subject: lib/util/charset: remove charset module loading Now that the 'table' modules are gone, there is no reason for there to be charset modules at all. This builds the macosxfs and weird modules into the binary at the appropriate times, and changes the tests to test instead the difference between the remaining internal handlers and iconv(). Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Tue Sep 20 06:27:06 CEST 2011 on sn-devel-104 --- source4/param/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/param') diff --git a/source4/param/util.c b/source4/param/util.c index 92672ecba2..d5b9583795 100644 --- a/source4/param/util.c +++ b/source4/param/util.c @@ -351,9 +351,9 @@ struct smb_iconv_handle *smb_iconv_handle_reinit_lp(TALLOC_CTX *mem_ctx, struct smb_iconv_handle *old_ic) { return smb_iconv_handle_reinit(mem_ctx, lpcfg_dos_charset(lp_ctx), - lpcfg_unix_charset(lp_ctx), - lpcfg_parm_bool(lp_ctx, NULL, "iconv", "native", true), - old_ic); + lpcfg_unix_charset(lp_ctx), + true, + old_ic); } -- cgit