aboutsummaryrefslogtreecommitdiffstats
path: root/tools/shmtest.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-10-01 10:18:31 +0000
committerWerner Koch <[email protected]>2004-10-01 10:18:31 +0000
commit7caab37cd1bfd215e00475512f1a58d7b9f57a77 (patch)
treec6bf23f6f04fa73b5fbf8ae2b7df6b9255d4d203 /tools/shmtest.c
parent* mk-w32-dist: Updated from stable branch. (diff)
downloadgnupg-7caab37cd1bfd215e00475512f1a58d7b9f57a77.tar.gz
gnupg-7caab37cd1bfd215e00475512f1a58d7b9f57a77.zip
* gpgv.c (i18n_init): Always use LC_ALL.V1-3-90
* bftest.c (i18n_init): Always use LC_ALL. * shmtest.c (i18n_init): Ditto. * mpicalc.c (i18n_init): Ditto.
Diffstat (limited to '')
-rw-r--r--tools/shmtest.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/shmtest.c b/tools/shmtest.c
index d8bf72b61..3ef763854 100644
--- a/tools/shmtest.c
+++ b/tools/shmtest.c
@@ -56,11 +56,7 @@ static void
i18n_init(void)
{
#ifdef ENABLE_NLS
-#ifdef HAVE_LC_MESSAGES
- setlocale( LC_MESSAGES, "" );
-#else
- setlocale( LC_ALL, "" );
-#endif
+ setlocale( LC_ALL, "" );
bindtextdomain( PACKAGE, G10_LOCALEDIR );
textdomain( PACKAGE );
#endif