mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-25 04:39:48 +00:00
getty: don't try to detect parity on local lines
(Joakim Tjernlund <Joakim.Tjernlund at transmode.se>)
This commit is contained in:
parent
30eb319103
commit
95dc672326
@ -435,7 +435,7 @@ static char *get_logname(char *logname, unsigned size_logname,
|
||||
|
||||
/* Do parity bit handling. */
|
||||
ascval = c & 0177;
|
||||
if (c != ascval) { /* "parity" bit on ? */
|
||||
if (!(op->flags & F_LOCAL) && (c != ascval)) { /* "parity" bit on ? */
|
||||
bits = 1;
|
||||
mask = 1;
|
||||
while (mask & 0177) {
|
||||
|
Loading…
Reference in New Issue
Block a user