From f1d6fa47125cf625bfebdeca2b7d3c0022acd01c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 21 Jul 2013 07:40:28 +0000 Subject: [PATCH] When I turned fcntls into noncloexecs in r9940, I missed one. [originally from svn r9949] [r9940 == b4268722196a3d93183252584b86cbb719187a38] --- unix/uxpty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/uxpty.c b/unix/uxpty.c index fb1bd55a..98f91793 100644 --- a/unix/uxpty.c +++ b/unix/uxpty.c @@ -800,7 +800,7 @@ static const char *pty_init(void *frontend, void **backend_handle, Conf *conf, } close(pty->master_fd); - fcntl(slavefd, F_SETFD, 0); /* don't close on exec */ + noncloexec(slavefd); dup2(slavefd, 0); dup2(slavefd, 1); dup2(slavefd, 2);