diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-05-15 04:30:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-05-15 04:30:56 +0800 |
commit | c517f52cd777222c90e0a10d09c7db1188a04ad3 (patch) | |
tree | f40c24c4e24a5b41824211be6600850b08ce8b6a /camel/providers/imap/camel-imap-utils.c | |
parent | 3bfd63acd3ab642e82e0e1d0641f42bea177fa3b (diff) | |
download | gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar.gz gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar.bz2 gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar.lz gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar.xz gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.tar.zst gsoc2013-evolution-c517f52cd777222c90e0a10d09c7db1188a04ad3.zip |
Previous fix reverted. (get_content): Handle the case where a multipart's
2002-05-13 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c (imap_get_message): Previous
fix reverted.
(get_content): Handle the case where a multipart's parent is a
message/rfc822 part. Fixes bug #24136.
svn path=/trunk/; revision=16789
Diffstat (limited to 'camel/providers/imap/camel-imap-utils.c')
-rw-r--r-- | camel/providers/imap/camel-imap-utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c index 7ee7ff807d..617b587397 100644 --- a/camel/providers/imap/camel-imap-utils.c +++ b/camel/providers/imap/camel-imap-utils.c @@ -521,7 +521,7 @@ parse_params (char **parms_p, CamelContentType *type) * @folder: an imap folder * @ci: a CamelMessageContentInfo to fill in * - * This filles in @ci with data from *@body_p. On success *@body_p + * This fills in @ci with data from *@body_p. On success *@body_p * will point to the character after the body. On failure, it will be * set to %NULL and @ci will be unchanged. **/ @@ -547,7 +547,6 @@ imap_parse_body (char **body_p, CamelFolder *folder, /* Parse the child body parts */ children = g_ptr_array_new (); - i = 0; while (body && *body == '(') { child = camel_folder_summary_content_info_new (folder->summary); g_ptr_array_add (children, child); |