From 4f082c7df3998cdc2cdf9845a62d886d05257cb8 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 30 Apr 2014 02:56:02 +0200 Subject: Remove now unneeded FD_CLOEXEC flag config --- src/poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/poll.c') diff --git a/src/poll.c b/src/poll.c index 4ccf7de..ce1a7f4 100644 --- a/src/poll.c +++ b/src/poll.c @@ -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"); -- cgit v1.2.3