diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-16 12:35:52 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-16 12:35:52 +0200 |
commit | 00a3eb081e83bda40eacd294345cfcd3b348c597 (patch) | |
tree | 265e306216513961b965060b699fb10bf6f4d1ca /src/irmd | |
parent | e543c43c9f911bbe40371e3c6ca5c916cb3365a9 (diff) | |
download | ouroboros-00a3eb081e83bda40eacd294345cfcd3b348c597.tar.gz ouroboros-00a3eb081e83bda40eacd294345cfcd3b348c597.zip |
irmd, ipcpd: Include socket in select() for FreeBSD
Fixes #41
Diffstat (limited to 'src/irmd')
-rw-r--r-- | src/irmd/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/main.c b/src/irmd/main.c index bdc03ef8..d55fbbc3 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1736,7 +1736,7 @@ void * mainloop(void * o) #ifdef __FreeBSD__ FD_ZERO(&fds); FD_SET(irmd.sockfd, &fds); - if (select(irmd.sockfd, &fds, NULL, NULL, &timeout) <= 0) + if (select(irmd.sockfd + 1, &fds, NULL, NULL, &timeout) <= 0) continue; #endif |