diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-30 18:28:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-30 18:28:16 +0000 |
commit | db7dc81100c128593c20083e3891fc05941729bf (patch) | |
tree | f9e9de37dcfc3dddfe222339a43e05f24bc4f1bd /sysdeps/posix | |
parent | 3dc4a544191fa1592ba9fe9c5600f9853b869ff8 (diff) | |
download | glibc-db7dc81100c128593c20083e3891fc05941729bf.zip glibc-db7dc81100c128593c20083e3891fc05941729bf.tar.gz glibc-db7dc81100c128593c20083e3891fc05941729bf.tar.bz2 |
Update.
* sysdeps/posix/getaddrinfo.c (gaih_local): uname does not everywhere
return 0 for success but always < 0 on failure.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 17d27e7..fdd8729 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -130,7 +130,7 @@ gaih_local (const char *name, const struct gaih_service *service, return GAIH_OKIFUNSPEC | -EAI_NONAME; if ((name != NULL) || (req->ai_flags & AI_CANONNAME)) - if (uname (&utsname)) + if (uname (&utsname) < 0) return -EAI_SYSTEM; if (name != NULL) |