[dovecot-cvs] dovecot/src/lib-storage mail-thread.c,1.7,1.8

cras at procontrol.fi cras at procontrol.fi
Tue Jan 14 00:01:13 EET 2003


Update of /home/cvs/dovecot/src/lib-storage
In directory danu:/tmp/cvs-serv1862

Modified Files:
	mail-thread.c 
Log Message:
Compiler warning fix



Index: mail-thread.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-storage/mail-thread.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- mail-thread.c	13 Jan 2003 20:01:53 -0000	1.7
+++ mail-thread.c	13 Jan 2003 22:01:11 -0000	1.8
@@ -192,7 +192,8 @@
 	struct message_tokenizer *tok;
 	int valid_end;
 
-	tok = message_tokenize_init(*msgid_p, (size_t)-1, NULL, NULL);
+	tok = message_tokenize_init((const unsigned char *) *msgid_p,
+				    (size_t)-1, NULL, NULL);
 	message_tokenize_dot_token(tok, FALSE); /* just a minor speedup */
 
 	message_tokenize_get_string(tok, msgid, NULL, stop_tokens);




More information about the dovecot-cvs mailing list