Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 18 Jan 2000 06:53:09 +0000 (06:53 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 18 Jan 2000 06:53:09 +0000 (06:53 +0000)
* sysdeps/posix/getaddrinfo.c (gaih_local): If name is given and
AI_NUMERICHOST flag is set, return an error.
Patch by Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>.

ChangeLog
sysdeps/posix/getaddrinfo.c

index f62c7fe..fdd00cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2000-01-17  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/posix/getaddrinfo.c (gaih_local): If name is given and
+       AI_NUMERICHOST flag is set, return an error.
+       Patch by Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>.
+
        * inet/rcmd.c: Implement rcmd_af, rresvport_af, ruserok_af, and
        iruserok_af.
        * inet/rexec.c: Implement rexec_af.
index b4d408d..9b66676 100644 (file)
@@ -124,6 +124,9 @@ gaih_local (const char *name, const struct gaih_service *service,
 {
   struct utsname utsname;
 
+  if ((name != NULL) && (req->ai_flags & AI_NUMERICHOST))
+    return GAIH_OKIFUNSPEC | -EAI_NONAME;
+
   if ((name != NULL) || (req->ai_flags & AI_CANONNAME))
     if (uname (&utsname))
       return -EAI_SYSTEM;