diff options
author | Theodore Ts'o <tytso@mit.edu> | 2002-03-05 03:26:52 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2002-03-05 03:26:52 -0500 |
commit | 14308a5398984842e808faa3ff2dd6a1c52d90bd (patch) | |
tree | 3a17f9f359ccb7f1d4e2104c9eeb2b3a2ce4cb9b /misc/e2image.c | |
parent | 7380ac903316c0fe91ed6706eb4d84249a9b348d (diff) | |
download | e2fsprogs-14308a5398984842e808faa3ff2dd6a1c52d90bd.tar.gz |
Newer libintl needs LC_CTYPE to be set in addition to LC_MESSAGES.
Diffstat (limited to 'misc/e2image.c')
-rw-r--r-- | misc/e2image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/e2image.c b/misc/e2image.c index d8d43f9e..8c07b10c 100644 --- a/misc/e2image.c +++ b/misc/e2image.c @@ -445,6 +445,7 @@ int main (int argc, char ** argv) #ifdef ENABLE_NLS setlocale(LC_MESSAGES, ""); + setlocale(LC_CTYPE, ""); bindtextdomain(NLS_CAT_NAME, LOCALEDIR); textdomain(NLS_CAT_NAME); #endif |