]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies.
authorTimo Sirainen <tss@iki.fi>
Mon, 8 Sep 2003 13:04:34 +0000 (16:04 +0300)
committerTimo Sirainen <tss@iki.fi>
Mon, 8 Sep 2003 13:04:34 +0000 (16:04 +0300)
--HG--
branch : HEAD

src/imap/imap-fetch.c

index cbceac6eb83523501979833059d338b23578ca45..4f80acb73832768611b6cb236600b1b5e6f5de2d 100644 (file)
@@ -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;
        }