* krlogin.c: don't redeclare noltc, defltc if we happen to have
authorTom Yu <tlyu@mit.edu>
Wed, 28 Jun 1995 18:45:02 +0000 (18:45 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 28 Jun 1995 18:45:02 +0000 (18:45 +0000)
TIOCGLTC in addition to POSIX_TERMIOS

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

src/appl/bsd/ChangeLog
src/appl/bsd/krlogin.c

index 822ec3c4210abcec0cca43f18abc43fac8e312f6..3392971a75267d6e0e778af85651d38dc62e32b5 100644 (file)
@@ -1,3 +1,7 @@
+Tue Jun 27 23:50:56 1995  Tom Yu  (tlyu@dragons-lair)
+
+       * krlogin.c: don't redeclare noltc, defltc if we happen to have
+               TIOCGLTC in addition to POSIX_TERMIOS
 
 Tue Jun 27 16:18:49 EDT 1995   Paul Park       (pjpark@mit.edu)
        * configure.in - When checking number/type of arguments to {get,set}pgrp
index afde2e604a0c183642914485a4af104757ba1252..846747b8d6b015f77ab82a0571076897fd3cdc31 100644 (file)
@@ -715,9 +715,11 @@ struct     ltchars noltc = { -1, -1, -1, -1, -1, -1 };
 #ifndef POSIX_TERMIOS
 struct tchars deftc;
 struct tchars notc =   { -1, -1, -1, -1, -1, -1 };
+#ifndef TIOCGLTC
 struct ltchars defltc;
 struct ltchars noltc = { -1, -1, -1, -1, -1, -1 };
 #endif
+#endif
 
 doit(oldmask)
 #ifdef POSIX_SIGNALS