mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove PIOLLHUP from the flags used to test for to set exceptfsd
fd_set bits in select(2). It seems that historical behaviour is to not reporting exception on EOF, and several applications are broken. Reported by: Yoshihiko Sarumaru <ysarumaru gmail com> Discussed with: bde PR: ports/140934 MFC after: 2 weeks
This commit is contained in:
parent
7838815ebb
commit
61e53a389f
1 changed files with 1 additions and 1 deletions
|
|
@ -996,7 +996,7 @@ done:
|
|||
static int select_flags[3] = {
|
||||
POLLRDNORM | POLLHUP | POLLERR,
|
||||
POLLWRNORM | POLLHUP | POLLERR,
|
||||
POLLRDBAND | POLLHUP | POLLERR
|
||||
POLLRDBAND | POLLERR
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue