* void_assoc.c (ptyint_void_association): if we don't have
authorMark Eichin <eichin@mit.edu>
Sat, 27 Jan 1996 06:14:24 +0000 (06:14 +0000)
committerMark Eichin <eichin@mit.edu>
Sat, 27 Jan 1996 06:14:24 +0000 (06:14 +0000)
TIOCNOTTY (HP/UX 9 for example) don't try to use it.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7405 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/void_assoc.c

index 878b08a3aa23c0f7ac3c968ed4cdb19a6e33abc9..c897bea8bcdf1073494126942ef25f69fe33e237 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jan 27 01:13:34 1996  Mark Eichin  <eichin@cygnus.com>
+
+       * void_assoc.c (ptyint_void_association): if we don't have
+       TIOCNOTTY (HP/UX 9 for example) don't try to use it.
+
 Tue Jan 16 13:52:22 1996  Sam Hartman  <hartmans@tertius.mit.edu>
 
        * void_assoc.c (ptyint_void_association): Move setsid call from open_ctty to void_association.
index 34915d5dc0f8b7eaad3c5a0dc8a6ed50a55b3961..c1a3acdca647823e5ea9a88b22e38c59451dd410 100644 (file)
@@ -29,9 +29,11 @@ long ptyint_void_association()
 #endif
 
         /* Void tty association first */
+#ifdef TIOCNOTTY
         if ((con_fd = open("/dev/tty", O_RDWR)) >= 0) {
           ioctl(con_fd, TIOCNOTTY, 0);
           close(con_fd);
        }
+#endif
            return 0;
 }