[dovecot-cvs] dovecot/src/lib-index/mbox mbox-rewrite.c,1.56,1.57

cras at procontrol.fi cras at procontrol.fi
Fri May 23 18:40:52 EEST 2003


Update of /home/cvs/dovecot/src/lib-index/mbox
In directory danu:/tmp/cvs-serv28910/lib-index/mbox

Modified Files:
	mbox-rewrite.c 
Log Message:
Removed I/O priorities. They were pretty much useless and were just getting
in way.



Index: mbox-rewrite.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-index/mbox/mbox-rewrite.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- mbox-rewrite.c	8 May 2003 05:08:29 -0000	1.56
+++ mbox-rewrite.c	23 May 2003 14:40:50 -0000	1.57
@@ -495,7 +495,7 @@
 				     1024*256, 0, 0, FALSE);
 	i_stream_set_read_limit(input, size);
 
-	output = o_stream_create_file(out_fd, data_stack_pool, 1024, 0, FALSE);
+	output = o_stream_create_file(out_fd, data_stack_pool, 1024, FALSE);
 	o_stream_set_blocking(output, 60000, NULL, NULL);
 
 	ret = o_stream_send_istream(output, input);
@@ -643,7 +643,7 @@
 
 	/* note: we can't use data_stack_pool with output stream because it's
 	   being written to inside t_push() .. t_pop() calls */
-	output = o_stream_create_file(tmp_fd, system_pool, 8192, 0, FALSE);
+	output = o_stream_create_file(tmp_fd, system_pool, 8192, FALSE);
 	o_stream_set_blocking(output, 60000, NULL, NULL);
 
 	failed = FALSE; seq = 1;



More information about the dovecot-cvs mailing list