diff options
author | Sander Jansen <s.jansen@gmail.com> | 2009-05-07 10:39:18 -0500 |
---|---|---|
committer | Sander Jansen <s.jansen@gmail.com> | 2009-05-07 10:39:18 -0500 |
commit | adc3be40b090e93d5f612a4f9e90965cc8618692 (patch) | |
tree | 9142025c1cecd12bb8c02b29e50a3c9482b4e0ae | |
parent | b998e150f93c4c0f680eec4f74beb61b229e296f (diff) | |
download | xine-lib-adc3be40b090e93d5f612a4f9e90965cc8618692.tar.gz xine-lib-adc3be40b090e93d5f612a4f9e90965cc8618692.tar.bz2 |
Character encoding is stored in LC_CTYPE
-rw-r--r-- | src/xine-utils/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c index 689b68502..c3281f369 100644 --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -564,7 +564,7 @@ char *xine_get_system_encoding(void) { char *codeset = NULL; #ifdef HAVE_NL_LANGINFO - setlocale(LC_ALL, ""); + setlocale(LC_CTYPE, ""); codeset = nl_langinfo(CODESET); #endif /* |