diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-25 03:58:28 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-25 03:58:28 +0800 |
commit | d38dcd1631a6017598a78f7cc82a48b50753a911 (patch) | |
tree | 103b98e6094fe9e19892ff4f0c77a6facf250f3e /camel/camel-mime-part-utils.c | |
parent | 98e2091d6287bd28601d49877f1169de1c0dad6c (diff) | |
download | gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.gz gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.zst gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.zip |
fix a cut-and-pasto.
* camel-mime-part-utils.c
(simple_data_wrapper_construct_from_parser): fix a cut-and-pasto.
svn path=/trunk/; revision=2587
Diffstat (limited to 'camel/camel-mime-part-utils.c')
-rw-r--r-- | camel/camel-mime-part-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-part-utils.c b/camel/camel-mime-part-utils.c index 50e9fd29d5..82cff22f5a 100644 --- a/camel/camel-mime-part-utils.c +++ b/camel/camel-mime-part-utils.c @@ -141,7 +141,7 @@ simple_data_wrapper_construct_from_parser(CamelDataWrapper *dw, CamelMimeParser camel_stream_filter_add(filter, fdec); } if (fch) { - camel_mime_filter_reset(fdec); + camel_mime_filter_reset(fch); camel_stream_filter_add(filter, fch); } camel_data_wrapper_set_output_stream (dw, (CamelStream *)filter); |