diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-02-16 11:06:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-02-16 11:06:33 +0000 |
commit | b09bb95838b30dc92e4e83909b350d46a09c100a (patch) | |
tree | 5035bf46b3dcf5c1364df16a4a241b2af6ad5f1a /sysdeps/posix | |
parent | bc03c49eff8e75b47030c8a0a18238955f02c418 (diff) | |
download | glibc-b09bb95838b30dc92e4e83909b350d46a09c100a.tar glibc-b09bb95838b30dc92e4e83909b350d46a09c100a.tar.gz glibc-b09bb95838b30dc92e4e83909b350d46a09c100a.tar.bz2 glibc-b09bb95838b30dc92e4e83909b350d46a09c100a.zip |
Update.
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo in last change.
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 884a27c4e1..bee95acabc 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -533,7 +533,7 @@ getaddrinfo (const char *name, const char *service, if (hints == NULL) hints = &default_hints; - if (hints->ai_flags & ~(AI_PASSIVE|AI_CANANONNAME|AI_NUMERICHOST)) + if (hints->ai_flags & ~(AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST)) return EAI_BADFLAGS; if ((hints->ai_flags & AI_CANONNAME) && name == NULL) |