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

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


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

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/pop3/client.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- client.c	3 May 2003 17:57:35 -0000	1.9
+++ client.c	23 May 2003 14:40:50 -0000	1.10
@@ -110,8 +110,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 sending data */
 	o_stream_set_blocking(client->output, CLIENT_OUTPUT_TIMEOUT,



More information about the dovecot-cvs mailing list