summaryrefslogtreecommitdiffstats
path: root/src/async.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/async.c')
-rw-r--r--src/async.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/async.c b/src/async.c
index 2343cbb..28e0b03 100644
--- a/src/async.c
+++ b/src/async.c
@@ -41,8 +41,6 @@ void fastd_async_init(void) {
if (socketpair(AF_UNIX, SOCK_DGRAM, 0, fds))
exit_errno("socketpair");
- fastd_setfd(fds[0], FD_CLOEXEC);
- fastd_setfd(fds[1], FD_CLOEXEC);
fastd_setfl(fds[1], O_NONBLOCK);
ctx.async_rfd = fds[0];