[dovecot-cvs] dovecot/src/pop3 client.c,1.13,1.14 commands.c,1.9,1.10

cras at procontrol.fi cras at procontrol.fi
Thu Aug 7 00:15:36 EEST 2003


Update of /home/cvs/dovecot/src/pop3
In directory danu:/tmp/cvs-serv13163/pop3

Modified Files:
	client.c commands.c 
Log Message:
Index cache file rewrite. It's not finished yet and mbox support is
completely broken. But it's getting difficult to maintain outside cvs :)



Index: client.c
===================================================================
RCS file: /home/cvs/dovecot/src/pop3/client.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- client.c	26 Jul 2003 18:29:02 -0000	1.13
+++ client.c	6 Aug 2003 20:15:34 -0000	1.14
@@ -62,7 +62,7 @@
 	messageset = t_strdup_printf("1:%u", client->messages_count);
 	for (i = 0; i < 2; i++) {
 		ctx = client->mailbox->fetch_init(client->mailbox,
-						  MAIL_FETCH_SIZE,
+						  MAIL_FETCH_SIZE, NULL,
 						  messageset, FALSE);
 		if (ctx == NULL) {
 			client_send_storage_error(client);

Index: commands.c
===================================================================
RCS file: /home/cvs/dovecot/src/pop3/commands.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- commands.c	26 Jul 2003 16:33:22 -0000	1.9
+++ commands.c	6 Aug 2003 20:15:34 -0000	1.10
@@ -261,7 +261,7 @@
 
 	ctx = client->mailbox->fetch_init(client->mailbox,
 					  MAIL_FETCH_STREAM_HEADER |
-					  MAIL_FETCH_STREAM_BODY,
+					  MAIL_FETCH_STREAM_BODY, NULL,
 					  dec2str(msgnum+1), FALSE);
 	if (ctx == NULL) {
 		client_send_storage_error(client);
@@ -345,7 +345,7 @@
 		t_strdup_printf("1:%u", client->messages_count) :
 		t_strdup_printf("%u", message);
 
-	ctx = client->mailbox->fetch_init(client->mailbox, 0,
+	ctx = client->mailbox->fetch_init(client->mailbox, 0, NULL,
 					  messageset, FALSE);
 	if (ctx == NULL) {
 		client_send_storage_error(client);



More information about the dovecot-cvs mailing list