diff options
author | Suresh Chandrasekharan <suresh.chandrasekharan@sun.com> | 2003-02-14 11:56:47 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-02-14 11:56:47 +0800 |
commit | b498fc007f35fbc1693004b6b0cc07ffd0696ce8 (patch) | |
tree | 5a193e007579c40d8dc4573800cba69a83242e56 | |
parent | aaa88bb0e48b54faf527d409a5075e4789f429d0 (diff) | |
download | gsoc2013-evolution-b498fc007f35fbc1693004b6b0cc07ffd0696ce8.tar.gz gsoc2013-evolution-b498fc007f35fbc1693004b6b0cc07ffd0696ce8.tar.zst gsoc2013-evolution-b498fc007f35fbc1693004b6b0cc07ffd0696ce8.zip |
Fix for Solaris Bug "31081 Mailer sender/Subject/Date fields blank for
2003-02-12 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gal/util/e-iconv.c: Fix for Solaris Bug "31081 Mailer
sender/Subject/Date fields blank for Solaris 8 ko_KR.EUC locale." and
partial fix for Solaris Bug "32747 additional issues with evolution
beta2 in ja_JP.PCK locale"
svn path=/trunk/; revision=19909
-rw-r--r-- | e-util/e-iconv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/e-util/e-iconv.c b/e-util/e-iconv.c index 0997878e81..f6823538b4 100644 --- a/e-util/e-iconv.c +++ b/e-util/e-iconv.c @@ -135,6 +135,7 @@ struct { /* FIXME: Japanese/Korean/Chinese stuff needs checking */ { "euckr-0", "EUC-KR" }, + { "5601", "EUC-KR" }, { "big5-0", "BIG5" }, { "big5.eten-0", "BIG5" }, { "big5hkscs-0", "BIG5HKCS" }, @@ -147,6 +148,7 @@ struct { { "ujis-0", "ujis" }, { "jisx0208.1983-0","SJIS" }, { "jisx0212.1990-0","SJIS" }, + { "pck", "SJIS" }, { NULL, NULL } }; |