summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-10-03 17:29:14 +0000
committerTheodore Tso <tytso@mit.edu>1994-10-03 17:29:14 +0000
commitf46b22bf773559c747d789170da72dcc52641e9a (patch)
treeca1bf4cd9bb1755440ce7c5a85ca53c11914a128 /src
parente312a21daaebe14095cd701d8e516a48549cd877 (diff)
downloadkrb5-f46b22bf773559c747d789170da72dcc52641e9a.tar.gz
krb5-f46b22bf773559c747d789170da72dcc52641e9a.tar.xz
krb5-f46b22bf773559c747d789170da72dcc52641e9a.zip
Look for termios.h in <termios.h>, not <sys/termios.h>. The latter is what's
specified in the POSIX standard. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4424 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/appl/telnet/telnet/ChangeLog5
-rw-r--r--src/appl/telnet/telnet/externs.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog
index 720d6c47c..38c8eb29d 100644
--- a/src/appl/telnet/telnet/ChangeLog
+++ b/src/appl/telnet/telnet/ChangeLog
@@ -1,3 +1,8 @@
+Mon Oct 3 13:28:04 1994 Theodore Y. Ts'o (tytso@dcl)
+
+ * externs.h: The proper place to look for termios.h is
+ <termios.h>, not <sys/termios.h>.
+
Thu Sep 29 22:51:39 1994 Theodore Y. Ts'o (tytso@dcl)
* Makefile.in: Relink executables if libraries change
diff --git a/src/appl/telnet/telnet/externs.h b/src/appl/telnet/telnet/externs.h
index 9f3c6eea2..cc363e817 100644
--- a/src/appl/telnet/telnet/externs.h
+++ b/src/appl/telnet/telnet/externs.h
@@ -68,7 +68,7 @@
# ifdef SYSV_TERMIO
# include <sys/termio.h>
# else
-# include <sys/termios.h>
+# include <termios.h>
# define termio termios
# endif
# endif