diff options
Diffstat (limited to '')
-rw-r--r-- | bounce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bounce.c b/bounce.c index 69783f8..cd4898a 100644 --- a/bounce.c +++ b/bounce.c @@ -424,7 +424,7 @@ int main(int argc, char *argv[]) { } } if (revents & POLLIN) clientRecv(client); - if (client->error || revents & (POLLHUP | POLLERR)) { + if (client->remove || revents & (POLLHUP | POLLERR)) { clientFree(client); eventRemove(i); } |