From: Timo Sirainen Date: Mon, 8 Sep 2003 13:04:34 +0000 (+0300) Subject: Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies. X-Git-Tag: 1.1.alpha1~4340 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d70e06ce7f4ecbb717556a7dc0d464336bb4ad8;p=thirdparty%2Fdovecot%2Fcore.git Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies. --HG-- branch : HEAD --- 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; }