diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-04 16:04:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-04 06:51:01 +0100 |
commit | 13470f11ee47da446eb7094c29dbc8ff402aede9 (patch) | |
tree | 2b54a14a3e02bf0b3301efcf7b7fbce39e18a6a6 /lib/util | |
parent | 1e42aa6b3a2912426caebaf89596fa7c9f19ba2e (diff) | |
download | samba-13470f11ee47da446eb7094c29dbc8ff402aede9.tar.gz samba-13470f11ee47da446eb7094c29dbc8ff402aede9.tar.bz2 samba-13470f11ee47da446eb7094c29dbc8ff402aede9.zip |
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 <tridge@samba.org>
Autobuild-Date: Fri Feb 4 06:51:01 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/charset/charcnv.c | 10 |
1 files changed, 0 insertions, 10 deletions
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]) { |