Fix typo TIOCSTTY to TIOCSCTTY in ioctl
authorEzra Peisach <epeisach@mit.edu>
Tue, 1 Aug 1995 16:09:35 +0000 (16:09 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 1 Aug 1995 16:09:35 +0000 (16:09 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6373 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog [new file with mode: 0644]
src/util/pty/open_ctty.c

diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog
new file mode 100644 (file)
index 0000000..5becd67
--- /dev/null
@@ -0,0 +1,5 @@
+Tue Aug  1 12:06:14 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * open_ctty.c (pty_open_ctty): Fixed typo TIOCSTTY to TIOCSCTTY.
+
+
index a4c2afd7057470383ba2859a8d0c9c084a5baadb..4f39e5decab36ec1513651b7515195323be0277b 100644 (file)
@@ -64,7 +64,7 @@ pty_open_ctty (slave, fd)
 #endif
 
 #ifdef TIOCSCTTY
-    ioctl(*fd, TIOCSTTY, 0); /* Don't check return.*/
+    ioctl(*fd, TIOCSCTTY, 0); /* Don't check return.*/
 #endif /* TIOCSTTY */
 
     testfd = open("/dev/tty", O_RDWR|O_NDELAY);