dovecot-2.0: doveadm auth: Fix to previous change, it broke auth...
dovecot at dovecot.org
dovecot at dovecot.org
Wed May 26 21:20:08 EEST 2010
details: http://hg.dovecot.org/dovecot-2.0/rev/5e7ca577e23a
changeset: 11384:5e7ca577e23a
user: Timo Sirainen <tss at iki.fi>
date: Wed May 26 19:19:20 2010 +0100
description:
doveadm auth: Fix to previous change, it broke auth completely.
diffstat:
src/doveadm/doveadm-auth.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 4f21121408b3 -r 5e7ca577e23a src/doveadm/doveadm-auth.c
--- a/src/doveadm/doveadm-auth.c Wed May 26 19:18:40 2010 +0100
+++ b/src/doveadm/doveadm-auth.c Wed May 26 19:19:20 2010 +0100
@@ -137,7 +137,7 @@
client = auth_client_init(auth_socket_path, getpid(), FALSE);
auth_client_set_connect_notify(client, auth_connected, input);
- if (auth_client_is_connected(client))
+ if (!auth_client_is_disconnected(client))
io_loop_run(current_ioloop);
auth_client_set_connect_notify(client, NULL, NULL);
More information about the dovecot-cvs
mailing list