aboutsummaryrefslogtreecommitdiff
path: root/gdb/ser-unix.c
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>1994-02-24 12:40:39 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>1994-02-24 12:40:39 +0000
commit5c07a10bb415732307ea9f2f528c898543f5ad55 (patch)
treebc0e87de758b8116874360ca7bef6300c58e46a4 /gdb/ser-unix.c
parenta69b39f0c53d51e174251bc4a4d5c5f2959796aa (diff)
downloadgdb-5c07a10bb415732307ea9f2f528c898543f5ad55.zip
gdb-5c07a10bb415732307ea9f2f528c898543f5ad55.tar.gz
gdb-5c07a10bb415732307ea9f2f528c898543f5ad55.tar.bz2
* exec.c (print_section_info): Print entry point for exec_bfd only.
* ser-unix.c (wait_for): Fix typo in HAVE_TERMIO case.
Diffstat (limited to 'gdb/ser-unix.c')
-rw-r--r--gdb/ser-unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c
index 6c09b31..d2221f8 100644
--- a/gdb/ser-unix.c
+++ b/gdb/ser-unix.c
@@ -1,5 +1,5 @@
/* Serial interface for local (hardwired) serial ports on Un*x like systems
- Copyright 1992, 1993 Free Software Foundation, Inc.
+ Copyright 1992, 1993, 1994 Free Software Foundation, Inc.
This file is part of GDB.
@@ -482,7 +482,7 @@ wait_for(scb, timeout)
25. */
scb->current_timeout = 12;
- state.termios.c_cc[VTIME] = scb->current_timeout * 10;
+ state.termio.c_cc[VTIME] = scb->current_timeout * 10;
scb->timeout_remaining = timeout - scb->current_timeout;
}
}