aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-01-26 16:20:54 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-01-26 16:20:54 +0100
commit4907f6ec58bfe1f7622027669c53df208054d334 (patch)
tree0fc944227bfce4276b527013582bc548604a68c2
parentf36368ed3767381b68cb626df4d6865ec392621e (diff)
downloadbusybox-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.c2
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 */