From 1d70e06ce7f4ecbb717556a7dc0d464336bb4ad8 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 8 Sep 2003 16:04:34 +0300 Subject: [PATCH] Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies. --HG-- branch : HEAD --- src/imap/imap-fetch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/imap/imap-fetch.c b/src/imap/imap-fetch.c index cbceac6eb8..4f80acb738 100644 --- a/src/imap/imap-fetch.c +++ b/src/imap/imap-fetch.c @@ -93,7 +93,7 @@ static int fetch_body(struct imap_fetch_context *ctx, struct mail *mail) return FALSE; ctx->first = FALSE; } else { - if (o_stream_send_str(ctx->output, " BODY(") < 0) + if (o_stream_send_str(ctx->output, " BODY (") < 0) return FALSE; } @@ -119,7 +119,7 @@ static int fetch_bodystructure(struct imap_fetch_context *ctx, return FALSE; ctx->first = FALSE; } else { - if (o_stream_send_str(ctx->output, " BODYSTRUCTURE(") < 0) + if (o_stream_send_str(ctx->output, " BODYSTRUCTURE (") < 0) return FALSE; } @@ -144,7 +144,7 @@ static int fetch_envelope(struct imap_fetch_context *ctx, struct mail *mail) return FALSE; ctx->first = FALSE; } else { - if (o_stream_send_str(ctx->output, " ENVELOPE(") < 0) + if (o_stream_send_str(ctx->output, " ENVELOPE (") < 0) return FALSE; } -- 2.47.3