diff options
Diffstat (limited to 'src/connections.cc')
| -rw-r--r-- | src/connections.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connections.cc b/src/connections.cc index b08b52a..0760514 100644 --- a/src/connections.cc +++ b/src/connections.cc @@ -612,7 +612,7 @@ void ProcessConnections(void){ ASSERT(NumFds > 0); int NumEvents = poll(Fds, NumFds, -1); if(NumEvents == -1){ - if(errno != ETIMEDOUT){ + if(errno != ETIMEDOUT && errno != EINTR){ LOG_ERR("Failed to poll connections: (%d) %s", errno, strerrordesc_np(errno)); } |
