aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-charset.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-07-20 12:59:46 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-07-20 12:59:46 +0800
commitf1738a4b78c2801519e255796029ef8ec22c2791 (patch)
tree15f4106798c44d13eac40caa5af85521d3a326fc /camel/camel-mime-filter-charset.c
parent8a7c9cba6c70d7bef728c3c88d8e733b562e8e60 (diff)
downloadgsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.gz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.bz2
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.lz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.xz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.zst
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.zip
renamed to camel_charset_to_iconv() to make it just a little more
2001-07-20 Not Zed <NotZed@Ximian.com> * camel-charset-map.c (camel_charset_get_iconv_friendly_name): renamed to camel_charset_to_iconv() to make it just a little more svn path=/trunk/; revision=11254
Diffstat (limited to 'camel/camel-mime-filter-charset.c')
-rw-r--r--camel/camel-mime-filter-charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-filter-charset.c b/camel/camel-mime-filter-charset.c
index d3fb126970..4e59478683 100644
--- a/camel/camel-mime-filter-charset.c
+++ b/camel/camel-mime-filter-charset.c
@@ -231,8 +231,8 @@ camel_mime_filter_charset_new_convert (const char *from_charset, const char *to_
{
CamelMimeFilterCharset *new = CAMEL_MIME_FILTER_CHARSET (camel_object_new (camel_mime_filter_charset_get_type ()));
- from_charset = camel_charset_get_iconv_friendly_name (from_charset);
- to_charset = camel_charset_get_iconv_friendly_name (to_charset);
+ from_charset = camel_charset_to_iconv (from_charset);
+ to_charset = camel_charset_to_iconv (to_charset);
new->ic = iconv_open (to_charset, from_charset);
if (new->ic == (iconv_t) -1) {