Wed Oct 19 12:36:47 1994 Theodore Y. Ts'o (tytso@dcl)
+ * login.c (main): Add other termios c_cc initializations for the
+ ALPHA.
+
* krlogind.c (protocol): Make protocol buffers be unsigned, since
we're comparing against unsigned data.
#ifdef VDISCRD
tc.c_cc[VDISCRD] = CFLUSH;
#endif
+#ifdef VDISCARD
+ tc.c_cc[VDISCARD] = CDISCARD;
+#endif
#ifdef VWERSE
tc.c_cc[VWERSE] = CWERASE;
#endif
+#ifdef VWERASE
+ tc.c_cc[VWERASE] = CWERASE;
+#endif
+#ifdef VSTATUS
+ tc.c_cc[VSTATUS] = CSTATUS;
+#endif
#endif /* NO_INIT_CC */
tcsetattr(0, TCSANOW, &tc);
#else