Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 16 Feb 1999 11:06:33 +0000 (11:06 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 16 Feb 1999 11:06:33 +0000 (11:06 +0000)
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo in last change.

ChangeLog
sysdeps/posix/getaddrinfo.c

index 48227b8..9767ff9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-02-16  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo in last change.
+
        * time/time.h: Avoid unneccesary #ifdef.
 
 1999-02-15  Geoff Keating  <geoffk@ozemail.com.au>
index 884a27c..bee95ac 100644 (file)
@@ -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)