2000-01-18 Ulrich Drepper <drepper@cygnus.com>
+ * sysdeps/posix/getaddrinfo.c: Correct modifications done for
+ PR1515. Patch by Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>.
+
* posix/regex.h (RE_SYNTAX_POSIX_EXTENDED): Add RE_CONTEXT_INVALID_OPS.
* posix/regex.c (regex_compile): Return appropriate errors for
unterminated brace expressions. Detect invalid characters
static struct gaih_typeproto gaih_inet_typeproto[] =
{
- { 0, 0, NULL },
- { SOCK_STREAM, IPPROTO_TCP, (char *) "tcp" ,0 },
+ { 0, 0, NULL, 0 },
+ { SOCK_STREAM, IPPROTO_TCP, (char *) "tcp", 0 },
{ SOCK_DGRAM, IPPROTO_UDP, (char *) "udp", 0 },
{ SOCK_RAW, IPPROTO_RAW, (char *) "raw", GAI_PROTO_NOSERVICE },
{ 0, 0, NULL, 0 }
struct gaih_typeproto *tp = gaih_inet_typeproto + 1;
while (tp->name != NULL
- && (req->ai_socktype != tp->socktype || req->ai_socktype == 0)
&& ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0
- || req->ai_protocol != tp->protocol
- || req->ai_protocol == 0))
+ || (req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
+ || (req->ai_protocol != 0
+ && req->ai_protocol != tp->protocol)))
++tp;
if (tp->name == NULL)
++tp;
while (tp->name != NULL
- && (req->ai_socktype != tp->socktype || req->ai_socktype == 0)
- && ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0
- || req->ai_protocol != tp->protocol
- || req->ai_protocol == 0))
+ && ((req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
+ || (req->ai_protocol != 0
+ && req->ai_protocol != tp->protocol)))
++tp;
if (tp->name == NULL)
struct gaih_servtuple **pst = &st;
for (tp++; tp->name; tp++)
{
- struct gaih_servtuple *newp = (struct gaih_servtuple *)
+ struct gaih_servtuple *newp;
+
+ if ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0)
+ continue;
+
+ newp = (struct gaih_servtuple *)
__alloca (sizeof (struct gaih_servtuple));
if ((rc = gaih_inet_serv (service->name, tp, newp)))