diff options
author | Maria Matejka <mq@ucw.cz> | 2022-10-05 16:26:13 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-10-05 16:33:34 +0200 |
commit | e1701128bfdc737e04fe4bd4609020d5f93853c6 (patch) | |
tree | f8e31973ff102c888c76cf02f11cb9acad986504 /sysdep/unix/io.c | |
parent | 4d687d7aecb2bc4b695d26418bc761acb1d15c76 (diff) |
Poll errors must also drop a corefile. And we shouldn't run sockets when sockets have changed
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index d4a3d798..fb25d5d8 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -2315,7 +2315,7 @@ io_loop(void) { if (errno == EINTR || errno == EAGAIN) continue; - die("poll: %m"); + bug("poll: %m"); } if (pout) { |