diff options
author | June McEnroe <june@causal.agency> | 2020-04-02 16:33:08 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-02 16:33:08 -0400 |
commit | 52d77847622273fe9ec42a083261c09fe82d057e (patch) | |
tree | 1146a8e532389d02dd614b5a358cd0e60379dc3e | |
parent | Send ERR_NOMOTD during sync (diff) | |
download | pounce-52d77847622273fe9ec42a083261c09fe82d057e.tar.gz pounce-52d77847622273fe9ec42a083261c09fe82d057e.zip |
Do not crash on error from accept in calico
Diffstat (limited to '')
-rw-r--r-- | dispatch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dispatch.c b/dispatch.c index c2e2d50..c558729 100644 --- a/dispatch.c +++ b/dispatch.c @@ -252,7 +252,10 @@ int main(int argc, char *argv[]) { if (i < binds) { int sock = accept(event.ptr[i].fd, NULL, NULL); - if (sock < 0) err(EX_IOERR, "accept"); + if (sock < 0) { + warn("accept"); + continue; + } int yes = 1; error = setsockopt( |