From 667353b64b552aff9e785a20ee915fb343a0dac9 Mon Sep 17 00:00:00 2001 From: staffcvs <> Date: Sat, 23 Feb 2008 13:05:58 +0000 Subject: *** empty log message *** --- src/serial.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'src/serial.c') diff --git a/src/serial.c b/src/serial.c index bd4450c..3784573 100644 --- a/src/serial.c +++ b/src/serial.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.8 2008/02/23 13:05:58 staffcvs + * *** empty log message *** + * * Revision 1.7 2008/02/15 23:52:12 james * *** empty log message *** * @@ -163,12 +166,25 @@ serial_open (char *path, int lock_mode) if (!l) return NULL; - default_termios (&termios); fd = open (path, O_RDWR | O_NOCTTY | O_NONBLOCK); set_nonblocking (fd); + + if (tcgetattr (fd, &termios)) + { + close (fd); + return NULL; + } + default_termios (&termios); + + if (tcsetattr (fd, TCSANOW, &termios)) + { + close (fd); + return NULL; + } + t = (Serial *) malloc (sizeof (Serial)); t->lock = l; -- cgit v1.2.3