diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index d7414ddaf2..b8b1e58872 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2003-04-29 Jeremy Katz <katzj@redhat.com> + + * providers/imap/camel-imap-folder.c (parse_fetch_response): + body_len needs to be a size_t instead of int + 2003-04-22 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-utils.c: Disable debugging printfs. diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index e7c51bf336..619ea1119a 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -2579,7 +2579,7 @@ parse_fetch_response (CamelImapFolder *imap_folder, char *response) GData *data = NULL; char *start, *part_spec = NULL, *body = NULL, *uid = NULL, *idate = NULL; gboolean cache_header = TRUE, header = FALSE; - int body_len = 0; + size_t body_len = 0; if (*response != '(') { long seq; |