aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.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-utils.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-utils.c')
-rw-r--r--camel/camel-mime-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 594c1de05e..e5c90dabd0 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -954,7 +954,7 @@ rfc2047_decode_word(const char *in, int len)
memcpy (encname, in + 2, tmplen);
encname[tmplen] = '\0';
- charset = camel_charset_get_iconv_friendly_name (encname);
+ charset = camel_charset_to_iconv (encname);
inbuf = decword;
@@ -1811,7 +1811,7 @@ rfc2184_decode (const char *in, int len)
return NULL;
encoding = g_strndup (in, inptr - in);
- charset = camel_charset_get_iconv_friendly_name (encoding);
+ charset = camel_charset_to_iconv (encoding);
g_free (encoding);
inptr = memchr (inptr + 1, '\'', inend - inptr - 1);