* termios-tn.c: Include termio.h under AIX due to brokenness
authorTom Yu <tlyu@mit.edu>
Wed, 31 Mar 1999 05:00:20 +0000 (05:00 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 31 Mar 1999 05:00:20 +0000 (05:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11327 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/telnet/telnetd/ChangeLog
src/appl/telnet/telnetd/termios-tn.c

index 8ee29579f977a10b4b4da9d46e7fd3420420311f..4f567072dc0879aff69bd0d114ffb1bfb868c632 100644 (file)
@@ -1,3 +1,7 @@
+Tue Mar 30 23:59:15 1999  Tom Yu  <tlyu@mit.edu>
+
+       * termios-tn.c: Include termio.h under AIX due to brokenness.
+
 Wed Feb 24 20:12:10 1999  Tom Yu  <tlyu@mit.edu>
 
        * telnetd.8: Resync manpage.
index 4712a3326c6ff367e8eddd445202d8e08b5f6048..7e2aa5cb4c1812778f21e3b18f1978031cae4f07 100644 (file)
@@ -5,6 +5,9 @@
 #include <sys/stream.h>
 #include <sys/ioctl.h>
 #include <termios.h>
+#if !defined(TCSETS) && defined(_AIX) /* kludge for AIX */
+#include <termio.h>
+#endif
 
 int readstream_termios(cmd, ibuf, vstop, vstart, ixon)
      int cmd;