diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 13:33:55 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 13:33:55 +0800 |
commit | f4b7a4632573de34280e904bfb03a410a1fa1dbf (patch) | |
tree | b7b45a3424645a6836587c214dc5dfb2737239ef /camel/camel-mime-part.c | |
parent | 1208f96fe41fa87dfab2ee0a3b67a822380aeb27 (diff) | |
download | gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.gz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.bz2 gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.lz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.xz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.zst gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.zip |
Tons of fixes to fix things
svn path=/trunk/; revision=2057
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r-- | camel/camel-mime-part.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index 460e0527d2..953ee0d077 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -869,10 +869,10 @@ my_set_input_stream (CamelDataWrapper *data_wrapper, CamelStream *stream) /* set the input stream for the content object */ content_stream_inf_bound = camel_seekable_stream_get_current_position (seekable_stream); - mime_part->content_input_stream = - camel_seekable_substream_new_with_seekable_stream_and_bounds (seekable_stream, - content_stream_inf_bound, - -1); + printf ("Current position = %d\n", content_stream_inf_bound); + mime_part->content_input_stream = camel_seekable_substream_new_with_seekable_stream_and_bounds (seekable_stream, + content_stream_inf_bound, + -1); CAMEL_LOG_FULL_DEBUG ("CamelMimePart::set_input_stream leaving\n"); |