dovecot-2.0-pigeonhole: Updated to changes in Dovecot service API.

pigeonhole at rename-it.nl pigeonhole at rename-it.nl
Sun May 30 10:37:38 EEST 2010


details:   http://hg.rename-it.nl/dovecot-2.0-pigeonhole/rev/1b116b4a4b41
changeset: 1291:1b116b4a4b41
user:      Stephan Bosch <stephan at rename-it.nl>
date:      Sun May 30 09:37:28 2010 +0200
description:
Updated to changes in Dovecot service API.

diffstat:

 src/managesieve/main.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9f8f1a974501 -r 1b116b4a4b41 src/managesieve/main.c
--- a/src/managesieve/main.c	Wed May 19 17:04:42 2010 +0200
+++ b/src/managesieve/main.c	Sun May 30 09:37:28 2010 +0200
@@ -210,12 +210,12 @@
 	}
 }
 
-static void client_connected(const struct master_service_connection *conn)
+static void client_connected(struct master_service_connection *conn)
 {
 	if (master_login == NULL) {
 		/* running standalone, we shouldn't even get here */
-		(void)close(conn->fd);
 	} else {
+		master_service_client_connection_accept(conn);
 		master_login_add(master_login, conn->fd);
 	}
 }


More information about the dovecot-cvs mailing list