serial.c: NetBSD doesn't have OFILL.

This commit is contained in:
Uwe Hermann 2013-01-27 01:23:01 +01:00
parent cbadb856d6
commit 7d4abe5a77
1 changed files with 4 additions and 1 deletions

View File

@ -591,7 +591,10 @@ SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
/* Turn off all serial port cooking. */ /* Turn off all serial port cooking. */
term.c_iflag &= ~(ISTRIP | INLCR | ICRNL); term.c_iflag &= ~(ISTRIP | INLCR | ICRNL);
term.c_oflag &= ~(ONLCR | OCRNL | ONOCR | OFILL ); term.c_oflag &= ~(ONLCR | OCRNL | ONOCR);
#if !defined(__NetBSD__)
term.c_oflag &= ~OFILL;
#endif
/* Disable canonical mode, and don't echo input characters. */ /* Disable canonical mode, and don't echo input characters. */
term.c_lflag &= ~(ICANON | ECHO); term.c_lflag &= ~(ICANON | ECHO);