X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fuxpty.c;h=98f917932b5561856d9ef99f843aa36a6555a38b;hb=0cc6fb8bfea07360afeac83ba67aceffb56499c8;hp=fb1bd55a6c265c6a3a75d4fd705006233ebfb6d9;hpb=b4268722196a3d93183252584b86cbb719187a38;p=PuTTY.git 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);