From 13470f11ee47da446eb7094c29dbc8ff402aede9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 4 Feb 2011 16:04:30 +1100 Subject: charcnv: removed call to setlocale() (bug 7519) We don't need this setlocale() call, and it can break applications that use our libraries Thanks to Milan Crha for pointing this out Autobuild-User: Andrew Tridgell Autobuild-Date: Fri Feb 4 06:51:01 CET 2011 on sn-devel-104 --- lib/util/charset/charcnv.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'lib/util') diff --git a/lib/util/charset/charcnv.c b/lib/util/charset/charcnv.c index f8aeea34b8..59b36e3062 100644 --- a/lib/util/charset/charcnv.c +++ b/lib/util/charset/charcnv.c @@ -139,16 +139,6 @@ static smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic, if (initialised == false) { initialised = true; - -#ifdef LC_ALL - /* we set back the locale to C to get ASCII-compatible - toupper/lower functions. For now we do not need - any other POSIX localisations anyway. When we - should really need localized string functions one - day we need to write our own ascii_tolower etc. - */ - setlocale(LC_ALL, "C"); -#endif } if (ic->conv_handles[from][to]) { -- cgit