]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/uxpty.c
Rationalise access to, and content of, backends[] array.
[PuTTY.git] / unix / uxpty.c
index f79b974f60d07ec75102949ef7b494ac27cb85e7..2e165cf2e9451e8d71f2d9dddeeac10197378eed 100644 (file)
@@ -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);
@@ -1085,5 +1085,7 @@ Backend pty_backend = {
     pty_provide_logctx,
     pty_unthrottle,
     pty_cfg_info,
+    "pty",
+    -1,
     1
 };