diff options
author | Ozkan Sezer <sezero@sourceware.org> | 2010-05-26 22:40:24 +0000 |
---|---|---|
committer | Ozkan Sezer <sezero@sourceware.org> | 2010-05-26 22:40:24 +0000 |
commit | 363a6e9f2c3fe1e25f8fa986347948897f189f39 (patch) | |
tree | 71182a438b05d879f96dc50f3dcd232c29f312cb /sim/cris/rvdummy.c | |
parent | 9db8dccb1711d06bd180437fcd8c78c5f0981193 (diff) | |
download | fsf-binutils-gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.zip fsf-binutils-gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.tar.gz fsf-binutils-gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.tar.bz2 |
2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
gdb/
* ser-tcp.c (net_open): Check error return from socket() call by its
equality to -1 not by it being negative.
(net_close): Likewise.
gdb/gdbserver/
* gdbreplay.c (remote_open): Check error return from socket() call by
its equality to -1 not by it being negative.
* remote-utils.c (remote_open): Likewise.
sim/arm/
* communicate.c (MYread_char): Check error return from accept() call
by its equality to -1 not by it being negative.
(MYread_charwait): Likewise.
* main.c (main): Likewise for both socket() and accept() calls.
sim/common/
* dv-sockser.c (dv_sockser_init): Check error return from socket()
call by its equality to -1 not by it being negative.
(connected_p): Likewise for accept() call.
sim/cris/
* dv-rv.c (hw_rv_init_socket): Check error return from socket() call
by its equality to -1 not by it being negative.
(hw_rv_write): Likewise.
(hw_rv_handle_incoming): Likewise.
(hw_rv_poll_once): Likewise.
* rvdummy.c (setupsocket): Likewise.
(main): Likewise for accept() call as returned from setupsocket().
sim/m32c/
* main.c (setup_tcp_console): Check error return from socket() call
by its equality to -1 not by it being negative.
Diffstat (limited to 'sim/cris/rvdummy.c')
-rw-r--r-- | sim/cris/rvdummy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/cris/rvdummy.c b/sim/cris/rvdummy.c index edcd8d2..c716b8d 100644 --- a/sim/cris/rvdummy.c +++ b/sim/cris/rvdummy.c @@ -118,7 +118,7 @@ int setupsocket (void) memset (&sa_in, 0, sizeof (sa_in)); s = socket (AF_INET, SOCK_STREAM, 0); - if (s < 0) + if (s == -1) return -1; if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof reuse) != 0) @@ -517,7 +517,7 @@ main (int argc, char *argv[]) } fd = setupsocket (); - if (fd < 0) + if (fd == -1) { fprintf (stderr, "%s: problem setting up the connection: %s\n", progname, strerror (errno)); |