summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-02-24 03:54:42 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-02-24 03:54:42 +0000
commitdb0d5b6b61662e71c0a8e2ee92eecb1f6bbc313d (patch)
treec64f5b94a0efa423cd83686e9464c1583e45dfff
parent1ecb9a686cb917111569e52207662c51dbbfb6bf (diff)
Set LANGUAGE instead of LC_ALL to shield against LANGUAGE being set in the
2005-02-23 Matthias Clasen <mclasen@redhat.com> * tests/keyfile-test.c (test_locale_string): Set LANGUAGE instead of LC_ALL to shield against LANGUAGE being set in the environment. (#168311, Suren A. Chilingaryan)
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-126
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--tests/keyfile-test.c2
5 files changed, 25 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f4884de4c..a3c8e9175 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-02-23 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/keyfile-test.c (test_locale_string): Set LANGUAGE
+ instead of LC_ALL to shield against LANGUAGE being set in
+ the environment. (#168311, Suren A. Chilingaryan)
+
Tue Feb 22 22:03:38 2005 Manish Singh <yosh@gimp.org>
* glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index f4884de4c..a3c8e9175 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+2005-02-23 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/keyfile-test.c (test_locale_string): Set LANGUAGE
+ instead of LC_ALL to shield against LANGUAGE being set in
+ the environment. (#168311, Suren A. Chilingaryan)
+
Tue Feb 22 22:03:38 2005 Manish Singh <yosh@gimp.org>
* glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12
index f4884de4c..a3c8e9175 100644
--- a/ChangeLog.pre-2-12
+++ b/ChangeLog.pre-2-12
@@ -1,3 +1,9 @@
+2005-02-23 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/keyfile-test.c (test_locale_string): Set LANGUAGE
+ instead of LC_ALL to shield against LANGUAGE being set in
+ the environment. (#168311, Suren A. Chilingaryan)
+
Tue Feb 22 22:03:38 2005 Manish Singh <yosh@gimp.org>
* glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index f4884de4c..a3c8e9175 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+2005-02-23 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/keyfile-test.c (test_locale_string): Set LANGUAGE
+ instead of LC_ALL to shield against LANGUAGE being set in
+ the environment. (#168311, Suren A. Chilingaryan)
+
Tue Feb 22 22:03:38 2005 Manish Singh <yosh@gimp.org>
* glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
diff --git a/tests/keyfile-test.c b/tests/keyfile-test.c
index 9b2559f33..6680648b7 100644
--- a/tests/keyfile-test.c
+++ b/tests/keyfile-test.c
@@ -615,7 +615,7 @@ test_locale_string (void)
/* now test that translations are thrown away */
- g_setenv ("LC_ALL", "de", TRUE);
+ g_setenv ("LANGUAGE", "de", TRUE);
setlocale (LC_ALL, "");
keyfile = load_data (data, 0);