diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-26 16:20:54 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-26 16:20:54 +0100 |
commit | 4907f6ec58bfe1f7622027669c53df208054d334 (patch) | |
tree | 0fc944227bfce4276b527013582bc548604a68c2 | |
parent | f36368ed3767381b68cb626df4d6865ec392621e (diff) | |
download | busybox-w32-4907f6ec58bfe1f7622027669c53df208054d334.tar.gz busybox-w32-4907f6ec58bfe1f7622027669c53df208054d334.tar.bz2 busybox-w32-4907f6ec58bfe1f7622027669c53df208054d334.zip |
getty: fix "ifdef CMSPAR"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | loginutils/getty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c index 4dfe579c1..34f72c465 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c | |||
@@ -269,7 +269,7 @@ static void termios_init(int speed) | |||
269 | * Odd parity (else even) | 269 | * Odd parity (else even) |
270 | */ | 270 | */ |
271 | | CSTOPB | PARENB | PARODD | 271 | | CSTOPB | PARENB | PARODD |
272 | #ifdef CBAUDEX | 272 | #ifdef CMSPAR |
273 | | CMSPAR /* mark or space parity */ | 273 | | CMSPAR /* mark or space parity */ |
274 | #endif | 274 | #endif |
275 | | CBAUD /* (output) baud rate */ | 275 | | CBAUD /* (output) baud rate */ |