2005-05-17 Neal H. Walfield <neal@gnu.org>
authorRoland McGrath <roland@gnu.org>
Wed, 18 May 2005 19:22:50 +0000 (19:22 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 18 May 2005 19:22:50 +0000 (19:22 +0000)
* sysdeps/posix/getaddrinfo.c (gaih_local): Check [_HAVE_SA_LEN]
instead of [SALEN].
(gaih_inet): Likewise.

sysdeps/posix/getaddrinfo.c

index 5ec7262..d97b95b 100644 (file)
@@ -196,10 +196,10 @@ gaih_local (const char *name, const struct gaih_service *service,
   (*pai)->ai_addrlen = sizeof (struct sockaddr_un);
   (*pai)->ai_addr = (void *) (*pai) + sizeof (struct addrinfo);
 
-#if SALEN
+#ifdef _HAVE_SA_LEN
   ((struct sockaddr_un *) (*pai)->ai_addr)->sun_len =
     sizeof (struct sockaddr_un);
-#endif /* SALEN */
+#endif /* _HAVE_SA_LEN */
 
   ((struct sockaddr_un *)(*pai)->ai_addr)->sun_family = AF_LOCAL;
   memset(((struct sockaddr_un *)(*pai)->ai_addr)->sun_path, 0, UNIX_PATH_MAX);
@@ -1076,9 +1076,9 @@ gaih_inet (const char *name, const struct gaih_service *service,
            ai->ai_canonname = (char *) canon;
            canon = NULL;
 
-#if SALEN
+#ifdef _HAVE_SA_LEN
            ai->ai_addr->sa_len = socklen;
-#endif /* SALEN */
+#endif /* _HAVE_SA_LEN */
            ai->ai_addr->sa_family = family;
 
            if (family == AF_INET6)