Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 15 Feb 1999 10:38:47 +0000 (10:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 15 Feb 1999 10:38:47 +0000 (10:38 +0000)
1999-02-15  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/posix/getaddrinfo.c (getaddrinfo): Correct test for
invalid ai_flags.

ChangeLog
sysdeps/posix/getaddrinfo.c

index 70eb5a6..5dc903a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 7502e00..884a27c 100644 (file)
@@ -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)