[dovecot-cvs] dovecot/src/lib-storage mail-save.c,1.10,1.11

cras at dovecot.org cras at dovecot.org
Sat Jul 31 03:33:55 EEST 2004


Update of /home/cvs/dovecot/src/lib-storage
In directory talvi:/tmp/cvs-serv25219/lib-storage

Modified Files:
	mail-save.c 
Log Message:
Added struct message_header_line.middle and middle_len to contain the ':'
in header and whitespace around it.



Index: mail-save.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-storage/mail-save.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- mail-save.c	20 Jun 2004 06:14:00 -0000	1.10
+++ mail-save.c	31 Jul 2004 00:33:53 -0000	1.11
@@ -109,7 +109,8 @@
 			if (!hdr->continued) {
 				(void)o_stream_send(output, hdr->name,
 						    hdr->name_len);
-				(void)o_stream_send(output, ": ", 2);
+				(void)o_stream_send(output, hdr->middle,
+						    hdr->middle_len);
 			}
 			(void)o_stream_send(output, hdr->value, hdr->value_len);
 			if (!hdr->no_newline)



More information about the dovecot-cvs mailing list