commit | 95dc67232606af071e59ede726bfab1d0ec72f7f | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Feb 02 19:05:36 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Feb 02 19:05:36 2008 +0000 |
tree | 8a891a402338bdec958406e9bf20bfbce1144fbf | |
parent | 30eb3191030f2ceb7b596a2666abc8e455de220c [diff] |
getty: don't try to detect parity on local lines (Joakim Tjernlund <Joakim.Tjernlund at transmode.se>)
diff --git a/loginutils/getty.c b/loginutils/getty.c index 31230c9..f033b5a 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c
@@ -435,7 +435,7 @@ /* 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) {