summaryrefslogtreecommitdiff
path: root/lib/libc/net/getaddrinfo.3
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2009-07-09 10:14:42 +0000
committerEric Faurot <eric@cvs.openbsd.org>2009-07-09 10:14:42 +0000
commit338f5475bae32b467b0b1126358bfa42c23f3f2c (patch)
treebb6ac511458f407a05d0958a82a4aafc95b95faf /lib/libc/net/getaddrinfo.3
parentaad723e7325197f7e567c95c6deb146440d0f958 (diff)
promote correct style for error checking
ok tedu@ deraadt@ krw@
Diffstat (limited to 'lib/libc/net/getaddrinfo.3')
-rw-r--r--lib/libc/net/getaddrinfo.314
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/net/getaddrinfo.3 b/lib/libc/net/getaddrinfo.3
index 3e1f16d7832..7250407d659 100644
--- a/lib/libc/net/getaddrinfo.3
+++ b/lib/libc/net/getaddrinfo.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getaddrinfo.3,v 1.46 2009/05/06 19:03:09 jacekm Exp $
+.\" $OpenBSD: getaddrinfo.3,v 1.47 2009/07/09 10:14:41 eric Exp $
.\" $KAME: getaddrinfo.3,v 1.36 2005/01/05 03:23:05 itojun Exp $
.\"
.\" Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
@@ -16,7 +16,7 @@
.\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\" PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: May 6 2009 $
+.Dd $Mdocdate: July 9 2009 $
.Dt GETADDRINFO 3
.Os
.Sh NAME
@@ -325,12 +325,12 @@ s = -1;
for (res = res0; res; res = res->ai_next) {
s = socket(res->ai_family, res->ai_socktype,
res->ai_protocol);
- if (s < 0) {
+ if (s == -1) {
cause = "socket";
continue;
}
- if (connect(s, res->ai_addr, res->ai_addrlen) < 0) {
+ if (connect(s, res->ai_addr, res->ai_addrlen) == -1) {
cause = "connect";
save_errno = errno;
close(s);
@@ -341,7 +341,7 @@ for (res = res0; res; res = res->ai_next) {
break; /* okay we got one */
}
-if (s < 0)
+if (s == -1)
err(1, "%s", cause);
freeaddrinfo(res0);
.Ed
@@ -368,12 +368,12 @@ nsock = 0;
for (res = res0; res && nsock < MAXSOCK; res = res->ai_next) {
s[nsock] = socket(res->ai_family, res->ai_socktype,
res->ai_protocol);
- if (s[nsock] < 0) {
+ if (s[nsock] == -1) {
cause = "socket";
continue;
}
- if (bind(s[nsock], res->ai_addr, res->ai_addrlen) < 0) {
+ if (bind(s[nsock], res->ai_addr, res->ai_addrlen) == -1) {
cause = "bind";
save_errno = errno;
close(s[nsock]);