diff options
author | C. McEnroe | 2021-06-24 17:38:18 -0400 |
---|---|---|
committer | C. McEnroe | 2021-06-25 11:50:14 -0400 |
commit | a0cc519829ff7ff5eadc1442439d69fcb87e034a (patch) | |
tree | bac9e004e2cfbdcdd4d6fd60d8b93703bebedf63 /chat.c | |
parent | 16b34e5cd2135c480ac661a9edcf913dfcabf87d (diff) |
Move setting CLOEXEC on socket to ircConnect
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chat.c b/chat.c index 170094f..873eed9 100644 --- a/chat.c +++ b/chat.c @@ -338,7 +338,6 @@ int main(int argc, char *argv[]) { signal(SIGTERM, signalHandler); signal(SIGCHLD, signalHandler); - fcntl(irc, F_SETFD, FD_CLOEXEC); bool pipes = !self.kiosk && !self.restricted; if (pipes) { int error = pipe(utilPipe) || pipe(execPipe); |