aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-part.c
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-06-25 01:56:14 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-06-25 01:56:14 +0800
commit0038b76777e2036bd3eb58e6860f153df9b17dce (patch)
treeea05b260d74e6a740933c850eb84f87ec17ef8d7 /camel/camel-mime-part.c
parent179e04c582ab764dab34f0451e5317a1ed237565 (diff)
downloadgsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar.gz
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar.bz2
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar.lz
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar.xz
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.tar.zst
gsoc2013-evolution-0038b76777e2036bd3eb58e6860f153df9b17dce.zip
new class. Simple implementation of a data wrapper: simply keeps the
1999-06-24 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/camel-simple-data-wrapper.[ch]: new class. Simple implementation of a data wrapper: simply keeps the stream result in a byte array. * camel/camel-mime-part.c (_parse_header_pair): added a warning. Have to think about the correct way to store content type stuff. svn path=/trunk/; revision=995
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r--camel/camel-mime-part.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c
index 8e187a8eac..89eb85b35f 100644
--- a/camel/camel-mime-part.c
+++ b/camel/camel-mime-part.c
@@ -621,11 +621,11 @@ _parse_header_pair (CamelMimePart *mime_part, GString *header_name, GString *hea
header_handled = TRUE;
break;
- case HEADER_CONTENT_TYPE:
+ case HEADER_CONTENT_TYPE: /**** * WARNING THIS IS BROKEN * *****/
CAMEL_LOG (FULL_DEBUG,
"CamelMimePart::parse_header_pair found HEADER_CONTENT_TYPE: %s\n",
header_value->str );
-
+
gmime_content_field_construct_from_string (CAMEL_DATA_WRAPPER(mime_part)->content_type, header_value);
header_handled = TRUE;
break;