+Sun Nov 12 12:39:23 1995 Sam Hartman <hartmans@tertius.mit.edu>
+
+ * krlogind.c (doit): Clear iextn for NetBSD and other 4.4-based
+ systems so that ctrl-o isn't special.
+
+Sat Oct 21 17:33:37 1995 Sam Hartman <hartmans@tertius.mit.edu>
+
+ * login.c (main): Don't set LOGNAME twice.
+
Sun Nov 12 04:44:50 1995 Mark W. Eichin <eichin@cygnus.com>
* krshd.c (doit): drag TZ= from parent environment into envinit to
#if defined(POSIX_TERMIOS) && !defined(ultrix)
tcgetattr(t,&new_termio);
- new_termio.c_lflag &= ~(ICANON|ECHO|ISIG);
+ new_termio.c_lflag &= ~(ICANON|ECHO|ISIG|IEXTEN);
/* so that login can read the authenticator */
new_termio.c_iflag &= ~(IXON|IXANY|BRKINT|INLCR|ICRNL|ISTRIP);
/* new_termio.c_iflag = 0; */
setenv("PATH", LPATH, 0);
setenv("USER", pwd->pw_name, 0);
setenv("SHELL", pwd->pw_shell, 0);
- setenv("LOGNAME", pwd->pw_name, 0);
if (term[0] == '\0')
(void) strncpy(term, stypeof(tty), sizeof(term));