diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-30 02:56:02 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-30 02:56:02 +0200 |
commit | 4f082c7df3998cdc2cdf9845a62d886d05257cb8 (patch) | |
tree | d1aba5a8ad41db7954ac41583be2eb09e76e5492 /src/poll.c | |
parent | 36f9d70182c4c2f2e617192ae34abd6c44549a78 (diff) | |
download | fastd-4f082c7df3998cdc2cdf9845a62d886d05257cb8.tar fastd-4f082c7df3998cdc2cdf9845a62d886d05257cb8.zip |
Remove now unneeded FD_CLOEXEC flag config
Diffstat (limited to 'src/poll.c')
-rw-r--r-- | src/poll.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ static inline int handshake_timeout(void) { void fastd_poll_init(void) { - ctx.epoll_fd = epoll_create1(EPOLL_CLOEXEC); + ctx.epoll_fd = epoll_create1(0); if (ctx.epoll_fd < 0) exit_errno("epoll_create1"); |