gconvert aliasing (bugzilla: #58195, #55152)
- From: HideToshi Tajima <hidetoshi tajima eng sun com>
- To: gtk-devel-list gnome org
- Subject: gconvert aliasing (bugzilla: #58195, #55152)
- Date: Wed, 17 Oct 2001 09:20:32 -0700 (PDT)
Hi,
I'd like to commit a one-line code change in glib/gconvert.c
for fixing #58195 and #55152. Is the patch below okay to commit?
Regards,
HideToshi
------------- Begin Forwarded Message -------------
Date: Tue, 16 Oct 2001 11:05:29 -0700 (PDT)
From: HideToshi Tajima <hidetoshi tajima eng sun com>
Subject: gconvert aliasing (bugzilla: #58195, #55152)
To: gnome-i18n gnome org
Hi,
I tested glib's gconvert code change for charset aliasing, but it seems
that there is a small typo which is required to fix when platform's native
iconv is in use.
Here is a one-line patch to fix the typo. Okay to check in?
Regards,
HideToshi
------
--- glib/gconvert.c 2001/10/01 20:40:05 1.23
+++ glib/gconvert.c 2001/10/16 18:05:29
@@ -111,7 +111,7 @@
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)
{
_______________________________________________
gnome-i18n mailing list
gnome-i18n gnome org
http://mail.gnome.org/mailman/listinfo/gnome-i18n
------------- End Forwarded Message -------------
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]