[dovecot-cvs] dovecot/src/lib-imap imap-envelope.c,1.37,1.38

tss at dovecot.org tss at dovecot.org
Sat Nov 18 13:45:54 UTC 2006


Update of /var/lib/cvs/dovecot/src/lib-imap
In directory talvi:/tmp/cvs-serv24894

Modified Files:
	imap-envelope.c 
Log Message:
const fixes



Index: imap-envelope.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-imap/imap-envelope.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- imap-envelope.c	8 Oct 2006 19:22:36 -0000	1.37
+++ imap-envelope.c	18 Nov 2006 13:45:50 -0000	1.38
@@ -12,11 +12,11 @@
 struct message_part_envelope_data {
 	pool_t pool;
 
-	char *date, *subject;
+	const char *date, *subject;
 	struct message_address *from, *sender, *reply_to;
 	struct message_address *to, *cc, *bcc;
 
-	char *in_reply_to, *message_id;
+	const char *in_reply_to, *message_id;
 };
 
 const char *imap_envelope_headers[] = {
@@ -89,7 +89,7 @@
 	struct message_part_envelope_data *d;
 	enum imap_envelope_field field;
 	struct message_address **addr_p;
-	char **str_p;
+	const char **str_p;
 
 	if (*data == NULL) {
 		*data = p_new(pool, struct message_part_envelope_data, 1);



More information about the dovecot-cvs mailing list