From 4adfcf169ed58e73755382b963b469a2635e27a2 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sat, 13 Nov 2010 17:07:34 +0100 Subject: [PATCH] found one more place using IO directly, rerouting it to buffered IO else it will spoil the sequence. --- citadel/modules/imap/imap_fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/modules/imap/imap_fetch.c b/citadel/modules/imap/imap_fetch.c index 7667ab68a..86102bf8e 100644 --- a/citadel/modules/imap/imap_fetch.c +++ b/citadel/modules/imap/imap_fetch.c @@ -294,7 +294,7 @@ void imap_load_part(char *name, char *filename, char *partnum, char *disp, ); if (!strcasecmp(partnum, desired_section)) { - client_write(content, length); + iaputs(content, length); } snprintf(mimebuf2, sizeof mimebuf2, "%s.MIME", partnum); -- 2.39.2