An EOF is a good reason to close a connection.

ok nicm@
This commit is contained in:
krw
2014-07-13 20:51:08 +00:00
parent f117c7d94a
commit 2b67907176
2 changed files with 2 additions and 2 deletions

View File

@ -469,7 +469,7 @@ client_callback(unused int fd, short events, void *data)
}
if (events & EV_WRITE) {
if (msgbuf_write(&client_ibuf.w) < 0 && errno != EAGAIN)
if (msgbuf_write(&client_ibuf.w) <= 0 && errno != EAGAIN)
goto lost_server;
}