diff options
Diffstat (limited to 'bounce.c')
-rw-r--r-- | bounce.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bounce.c b/bounce.c index f460d74..b0cdca2 100644 --- a/bounce.c +++ b/bounce.c @@ -480,9 +480,9 @@ int main(int argc, char *argv[]) { } if (!event.clients[i]) { - int fd; - struct tls *tls = localAccept(&fd, event.fds[i].fd); - if (!tls) { + struct tls *tls; + int fd = localAccept(&tls, event.fds[i].fd); + if (fd < 0) { warn("accept"); continue; } |