changeset 1766:53e06e33393f HEAD

Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies.
author Timo Sirainen <tss@iki.fi>
date Mon, 08 Sep 2003 16:04:34 +0300
parents 6c0c2ff2c113
children b04610627018
files src/imap/imap-fetch.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/imap-fetch.c	Mon Sep 08 05:24:29 2003 +0300
+++ b/src/imap/imap-fetch.c	Mon Sep 08 16:04:34 2003 +0300
@@ -93,7 +93,7 @@
 			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 @@
 			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 @@
 			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;
 	}