serial.c: FreeBSD and OpenBSD don't have OFILL either.
This commit is contained in:
parent
22ca5aa68b
commit
cc840ab618
|
@ -592,7 +592,7 @@ SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
|
|||
/* Turn off all serial port cooking. */
|
||||
term.c_iflag &= ~(ISTRIP | INLCR | ICRNL);
|
||||
term.c_oflag &= ~(ONLCR | OCRNL | ONOCR);
|
||||
#if !defined(__NetBSD__)
|
||||
#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
||||
term.c_oflag &= ~OFILL;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue