[dovecot-cvs] dovecot/src/imap client.c,1.28,1.29

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


Update of /home/cvs/dovecot/src/imap
In directory danu:/tmp/cvs-serv28910/imap

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



Index: client.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/client.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- client.c	14 May 2003 17:23:11 -0000	1.28
+++ client.c	23 May 2003 14:40:50 -0000	1.29
@@ -50,8 +50,7 @@
 	client = i_new(struct client, 1);
 	client->input = i_stream_create_file(hin, default_pool,
 					     MAX_INBUF_SIZE, FALSE);
-	client->output = o_stream_create_file(hout, default_pool, 4096,
-					      IO_PRIORITY_DEFAULT, FALSE);
+	client->output = o_stream_create_file(hout, default_pool, 4096, FALSE);
 
 	/* set timeout for reading expected data (eg. APPEND). This is
 	   different from the actual idle time. */



More information about the dovecot-cvs mailing list