src: Check availability of ENONET

This commit is contained in:
Tatsuhiro Tsujikawa 2014-09-02 01:00:27 +09:00
parent 5cf07f5c21
commit 85f605f20d
1 changed files with 2 additions and 0 deletions

View File

@ -374,7 +374,9 @@ void perform_accept_pending_connection(ListenHandler *listener_handler,
errno == EPROTO ||
errno == ENOPROTOOPT ||
errno == EHOSTDOWN ||
#ifdef ENONET
errno == ENONET ||
#endif // ENONET
errno == EHOSTUNREACH ||
errno == EOPNOTSUPP ||
errno == ENETUNREACH) {