From: simon Date: Sun, 21 Jul 2013 07:40:28 +0000 (+0000) Subject: When I turned fcntls into noncloexecs in r9940, I missed one. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/3980e64ffbb86a37d6810b004a04a21f338a408b When I turned fcntls into noncloexecs in r9940, I missed one. git-svn-id: svn://svn.tartarus.org/sgt/putty@9949 cda61777-01e9-0310-a592-d414129be87e --- 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);