diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-19 03:06:00 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-19 03:06:00 +0800 |
commit | 6476c5f2331cd73d0deb7d459d701ee9e13c7b88 (patch) | |
tree | 5c7fd3991cb36f55fe6a405e0d5496177a75aeb7 /camel/camel-mime-part.c | |
parent | bf0960ab57f14c6abd9fa85dbb6ff379d23d9425 (diff) | |
download | gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar.gz gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar.bz2 gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar.lz gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar.xz gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.tar.zst gsoc2013-evolution-6476c5f2331cd73d0deb7d459d701ee9e13c7b88.zip |
tests
* tests/test1.c (main): tests
* camel/camel-mime-message.c (_write_to_file):
started write_to framework for mime_messages
svn path=/trunk/; revision=931
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r-- | camel/camel-mime-part.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index a79ef7efcc..416244ead9 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -460,6 +460,7 @@ camel_mime_part_get_content_object(CamelMimePart *mime_part) #define WHPTF gmime_write_header_pair_to_file +/* This is not used for the moment */ static void _write_content_to_file (CamelMimePart *mime_part, FILE *file) { @@ -490,7 +491,7 @@ _write_to_file(CamelDataWrapper *data_wrapper, FILE *file) CamelMimePart *mp = CAMEL_MIME_PART (data_wrapper); gmime_content_field_write_to_file(data_wrapper->content_type, file); gmime_content_field_write_to_file(mp->disposition, file); - WHPTF (file, "Content-Transfer-Encoding:", mp->encoding); + WHPTF (file, "Content-Transfer-Encoding", mp->encoding); WHPTF (file, "Content-Description", mp->description); WHPTF (file, "Content-MD5", mp->content_MD5); WHPTF (file, "Content-id", mp->content_id); |