From: Timo Sirainen Date: Sat, 24 May 2003 15:21:44 +0000 (+0300) Subject: fix X-Git-Tag: 1.1.alpha1~4603 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a337c51456fc8a068a7af5373371f8b736c4e51c;p=thirdparty%2Fdovecot%2Fcore.git fix --HG-- branch : HEAD --- diff --git a/src/lib/ioloop-poll.c b/src/lib/ioloop-poll.c index b02885ee86..3ef56b0971 100644 --- a/src/lib/ioloop-poll.c +++ b/src/lib/ioloop-poll.c @@ -204,6 +204,8 @@ void io_loop_handler_run(struct ioloop *ioloop) } else if (io->condition & IO_WRITE) { call = (pollfd->revents & IO_POLL_OUTPUT) != 0; pollfd->revents &= ~IO_POLL_OUTPUT; + } else { + call = FALSE; } if (call) {