[dovecot-cvs] dovecot/src/pop3-login client.c,1.12,1.13

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


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

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-login/client.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- client.c	18 May 2003 16:37:56 -0000	1.12
+++ client.c	23 May 2003 14:40:51 -0000	1.13
@@ -53,8 +53,7 @@
 static void client_open_streams(struct pop3_client *client, int fd)
 {
 	client->input = i_stream_create_file(fd, default_pool, 8192, FALSE);
-	client->output = o_stream_create_file(fd, default_pool, 1024,
-					      IO_PRIORITY_DEFAULT, FALSE);
+	client->output = o_stream_create_file(fd, default_pool, 1024, FALSE);
 }
 
 static int cmd_stls(struct pop3_client *client)



More information about the dovecot-cvs mailing list