diff options
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r-- | camel/camel-mime-message.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c index 53edc4f53b..8cc530c2b9 100644 --- a/camel/camel-mime-message.c +++ b/camel/camel-mime-message.c @@ -32,6 +32,8 @@ #include <stdio.h> #include <string.h> +#include <gal/util/e-iconv.h> + #include "camel-mime-message.h" #include "camel-multipart.h" #include "camel-stream-mem.h" @@ -537,7 +539,7 @@ process_header (CamelMedium *medium, const char *header_name, const char *header case HEADER_SUBJECT: g_free (message->subject); if (((CamelMimePart *)message)->content_type) - charset = camel_charset_to_iconv(header_content_type_param(((CamelMimePart *)message)->content_type, "charset")); + charset = e_iconv_charset_name(header_content_type_param(((CamelMimePart *)message)->content_type, "charset")); else charset = NULL; message->subject = g_strstrip (header_decode_string (header_value, charset)); |