[dovecot-cvs] dovecot/src/pop3-login client.c,1.43,1.44

cras at dovecot.org cras at dovecot.org
Sun Sep 18 17:43:49 EEST 2005


Update of /var/lib/cvs/dovecot/src/pop3-login
In directory talvi:/tmp/cvs-serv2034/pop3-login

Modified Files:
	client.c 
Log Message:
Make sure corking is removed before calling ssl_proxy_new()



Index: client.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/pop3-login/client.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- client.c	14 May 2005 20:32:10 -0000	1.43
+++ client.c	18 Sep 2005 14:43:47 -0000	1.44
@@ -129,6 +129,10 @@
 	}
 
 	client_send_line(client, "+OK Begin TLS negotiation now.");
+
+	/* uncork the old fd */
+	o_stream_uncork(client->output);
+
 	if (o_stream_flush(client->output) <= 0) {
 		/* the buffer has to be flushed */
 		o_stream_set_flush_pending(client->output, TRUE);



More information about the dovecot-cvs mailing list