diff options
author | bertrand <bertrand@helixcode.com> | 2000-03-05 06:23:06 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 06:23:06 +0800 |
commit | 8eb9e1f40b5d8e058f985659bea0a914b383710c (patch) | |
tree | 1e6a07601b3a85d77906bb664cdd2e5a55ca9837 /camel/camel-mime-part.c | |
parent | 6500f641816afdb3aaa7cc27f186500f4c0d7d8b (diff) | |
download | gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar.gz gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar.bz2 gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar.lz gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar.xz gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.tar.zst gsoc2013-evolution-8eb9e1f40b5d8e058f985659bea0a914b383710c.zip |
stream the raw content instead of nothing if the encoding is not
2000-03-04 bertrand <bertrand@helixcode.com>
* camel-mime-part.c (my_write_content_to_stream):
stream the raw content instead of nothing if the encoding
is not supported.
* camel-stream-fs.c (_seek): handle eos more
properly.
svn path=/trunk/; revision=2047
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r-- | camel/camel-mime-part.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index 4c2ecca805..460e0527d2 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -701,6 +701,7 @@ my_write_content_to_stream (CamelMimePart *mime_part, CamelStream *stream) gtk_object_unref (GTK_OBJECT (stream_b64)); break; default: + camel_data_wrapper_write_to_stream (content, stream); g_warning ("Encoding type `%s' not supported.", camel_mime_part_encoding_to_string (mime_part->encoding)); |