diff options
| author | Theodore Tso <tytso@mit.edu> | 1994-10-19 16:41:45 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1994-10-19 16:41:45 +0000 |
| commit | 89721441c601f27da90b216b0db41516c653fa37 (patch) | |
| tree | 1fb6f3d40e85bce5c3fd75115b3e9ecc23090d57 /src | |
| parent | 9bb0c311dd1c43ca1041bec4e9782f02d8714e24 (diff) | |
| download | krb5-89721441c601f27da90b216b0db41516c653fa37.tar.gz krb5-89721441c601f27da90b216b0db41516c653fa37.tar.xz krb5-89721441c601f27da90b216b0db41516c653fa37.zip | |
Add other termios c_cc initializations for the ALPHA
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4544 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/bsd/ChangeLog | 3 | ||||
| -rw-r--r-- | src/appl/bsd/login.c | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog index 74e43a8ea..8b252e3cc 100644 --- a/src/appl/bsd/ChangeLog +++ b/src/appl/bsd/ChangeLog @@ -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. diff --git a/src/appl/bsd/login.c b/src/appl/bsd/login.c index 995a285ae..e45db69d6 100644 --- a/src/appl/bsd/login.c +++ b/src/appl/bsd/login.c @@ -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 |
