[dovecot-cvs] dovecot/src/imap imap-fetch.c,1.11,1.12

cras at procontrol.fi cras at procontrol.fi
Mon Sep 8 17:04:37 EEST 2003


Update of /home/cvs/dovecot/src/imap
In directory danu:/tmp/cvs-serv5439

Modified Files:
	imap-fetch.c 
Log Message:
Missing spaces in ENVELOPE, BODY and BODYSTRUCTURE replies.



Index: imap-fetch.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/imap-fetch.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- imap-fetch.c	8 Sep 2003 01:46:14 -0000	1.11
+++ imap-fetch.c	8 Sep 2003 13:04:34 -0000	1.12
@@ -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;
 	}
 



More information about the dovecot-cvs mailing list