Add other termios c_cc initializations for the ALPHA
authorTheodore Tso <tytso@mit.edu>
Wed, 19 Oct 1994 16:41:45 +0000 (16:41 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 19 Oct 1994 16:41:45 +0000 (16:41 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4544 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/login.c

index 74e43a8ea81c6d28907ee53c2dbec9ae2c60a4da..8b252e3cc1b86454ba05f4791fbe562597bb9c62 100644 (file)
@@ -1,5 +1,8 @@
 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.
 
index 995a285ae78db193ed8dc0e38ebad8c34bcf65bd..e45db69d618b28ff6844228e706092ecd051edee 100644 (file)
@@ -436,9 +436,18 @@ main(argc, argv)
 #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