summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ser-unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c
index f917aa85e3d..bc8b087b6eb 100644
--- a/gdb/ser-unix.c
+++ b/gdb/ser-unix.c
@@ -574,7 +574,7 @@ when debugging using remote targets."),
int
ser_unix_read_prim (struct serial *scb, size_t count)
{
- int result = recv (scb->fd, scb->buf, count, 0);
+ int result = read (scb->fd, scb->buf, count);
if (result == -1 && errno != EINTR)
perror_with_name ("error while reading");
return result;