Commit 35dabc70b4549f9868b7b15b190f7b5ae8ccd6db
1 parent
39f738f6
Exists in
master
and in
3 other branches
Fixing locale settings.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/core/init.c
... | ... | @@ -126,7 +126,7 @@ int lib3270_loaded(void) |
126 | 126 | bindtextdomain(GETTEXT_PACKAGE, LIB3270_STRINGIZE_VALUE_OF(LOCALEDIR)); |
127 | 127 | #endif // _WIN32 |
128 | 128 | |
129 | - bind_textdomain_codeset("lib" LIB3270_STRINGIZE_VALUE_OF(LIB3270_NAME), "UTF-8"); | |
129 | + bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); | |
130 | 130 | |
131 | 131 | #ifdef HAVE_LIBCURL |
132 | 132 | trace("%s.curl_global_init",__FUNCTION__); | ... | ... |