=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/pty.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src/usr.bin/ssh/Attic/pty.c 1999/09/26 20:53:36 1.1 +++ src/usr.bin/ssh/Attic/pty.c 1999/09/29 21:15:54 1.2 @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$Id: pty.c,v 1.1 1999/09/26 20:53:36 deraadt Exp $"); +RCSID("$Id: pty.c,v 1.2 1999/09/29 21:15:54 deraadt Exp $"); #include "pty.h" #include "ssh.h" @@ -246,14 +246,8 @@ close(fd); } #endif /* TIOCNOTTY */ -#ifdef HAVE_SETSID -#ifdef ultrix - setpgrp(0, 0); -#else /* ultrix */ if (setsid() < 0) error("setsid: %.100s", strerror(errno)); -#endif /* ultrix */ -#endif /* HAVE_SETSID */ /* Verify that we are successfully disconnected from the controlling tty. */ fd = open("/dev/tty", O_RDWR|O_NOCTTY);