Fix a typo: to_codeset => from_codeset. (#58195, #55152)
authorHidetoshi Tajima <tajima@src.gnome.org>
Wed, 17 Oct 2001 16:58:26 +0000 (16:58 +0000)
committerHidetoshi Tajima <tajima@src.gnome.org>
Wed, 17 Oct 2001 16:58:26 +0000 (16:58 +0000)
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gconvert.c

index 2a00a45..6e7c0c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index 2a00a45..6e7c0c2 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-17  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * glib/gconvert.c (g_iconv_open):
+       Fix a typo: to_codeset => from_codeset.
+       (#58195, #55152)
+
 Fri Oct 12 18:24:02 2001  Tim Janik  <timj@gtk.org>
 
        * glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType
index bc1c760..dfdea6c 100644 (file)
@@ -111,7 +111,7 @@ g_iconv_open (const gchar  *to_codeset,
   if (!try_conversion (to_codeset, from_codeset, &cd))
     {
       const char **to_aliases = _g_charset_get_aliases (to_codeset);
-      const char **from_aliases = _g_charset_get_aliases (to_codeset);
+      const char **from_aliases = _g_charset_get_aliases (from_codeset);
 
       if (from_aliases)
        {