diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-10 03:19:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-10 03:19:17 -0400 |
commit | e2754bbe4f77b0d1d7270e9bd19af5c6e09c5739 (patch) | |
tree | b43ddd235314b3df7c0b02037740a602079f6b96 | |
parent | 0a400811f9c85584e7897a822dc70b5c9c38192d (diff) |
usr: login: Re-allow char echoing after bad login
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.bin/login/login.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/login/login.c b/usr.bin/login/login.c index d4c4562..2182928 100644 --- a/usr.bin/login/login.c +++ b/usr.bin/login/login.c @@ -242,6 +242,7 @@ getuser(FILE *fp) fseek(fp, 0, SEEK_SET); memset(buf, 0, sizeof(buf)); buf_i = 0; + echo_chars = 1; return -1; } |