Implement Marcin Bulandra's suggestion of only automatically updating the
[u/mdw/putty] / unix / uxpty.c
index 96b64e8..60dc7f7 100644 (file)
@@ -778,7 +778,7 @@ static const char *pty_init(void *frontend, void **backend_handle, Config *cfg,
        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);
@@ -1085,5 +1085,7 @@ Backend pty_backend = {
     pty_provide_logctx,
     pty_unthrottle,
     pty_cfg_info,
-    1
+    "pty",
+    -1,
+    0
 };