diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +1999-02-15 Ulrich Drepper <drepper@cygnus.com> + + * sysdeps/posix/getaddrinfo.c (getaddrinfo): Correct test for + invalid ai_flags. + 1999-02-15 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/llio.texi (Waiting for I/O): Correct meaning. Patch by diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 7502e00..884a27c 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 & ~3) + if (hints->ai_flags & ~(AI_PASSIVE|AI_CANANONNAME|AI_NUMERICHOST)) return EAI_BADFLAGS; if ((hints->ai_flags & AI_CANONNAME) && name == NULL) |