summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/appl/bsd/ChangeLog4
-rw-r--r--src/appl/bsd/krlogin.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog
index 822ec3c42..3392971a7 100644
--- a/src/appl/bsd/ChangeLog
+++ b/src/appl/bsd/ChangeLog
@@ -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
diff --git a/src/appl/bsd/krlogin.c b/src/appl/bsd/krlogin.c
index afde2e604..846747b8d 100644
--- a/src/appl/bsd/krlogin.c
+++ b/src/appl/bsd/krlogin.c
@@ -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