Look for termios.h in <termios.h>, not <sys/termios.h>. The latter is what's
authorTheodore Tso <tytso@mit.edu>
Mon, 3 Oct 1994 17:29:14 +0000 (17:29 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 3 Oct 1994 17:29:14 +0000 (17:29 +0000)
specified in the POSIX standard.

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

src/appl/telnet/telnet/ChangeLog
src/appl/telnet/telnet/externs.h

index 720d6c47c8514a26ec22e13c08e50110a21481a7..38c8eb29dfd748ff51e803f654c06b39eb1a4042 100644 (file)
@@ -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
index 9f3c6eea29ebba7349c078c37363162d8a9b619f..cc363e817f7268baf29cf61f81562d6933ac1d10 100644 (file)
@@ -68,7 +68,7 @@
 #  ifdef SYSV_TERMIO
 #   include <sys/termio.h>
 #  else
-#   include <sys/termios.h>
+#   include <termios.h>
 #   define termio termios
 #  endif
 # endif