X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/90f2ed42275289be8b7b178d5f5b91e5f05fccfd..58c840dcc1810bfc5a7334fe29058d2b2c97cdaf:/unix/uxpty.c diff --git a/unix/uxpty.c b/unix/uxpty.c index f79b974f..708e82d6 100644 --- a/unix/uxpty.c +++ b/unix/uxpty.c @@ -775,10 +775,10 @@ static const char *pty_init(void *frontend, void **backend_handle, Config *cfg, close(slavefd); setsid(); #ifdef TIOCSCTTY - ioctl(slavefd, TIOCSCTTY, 1); + ioctl(0, TIOCSCTTY, 1); #endif pgrp = getpid(); - tcsetpgrp(slavefd, pgrp); + tcsetpgrp(0, pgrp); setpgid(pgrp, pgrp); close(open(pty->name, O_WRONLY, 0)); setpgid(pgrp, pgrp);