Skip to content

Commit

Permalink
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo which caused
Browse files Browse the repository at this point in the history
	bugs not to be reported.
  • Loading branch information
Ulrich Drepper committed Apr 26, 2006
1 parent 797ed6f commit 105a492
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2006-04-26 Ulrich Drepper <drepper@redhat.com>

* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo which caused
bugs not to be reported.

* nscd/nscd.h (struct database_dyn): Add propagate field.
* nscd/nscd_conf.c (nscd_parse_file): Parse auto-propagate lines.
* nscd/nscd.conf: Add auto-propagate lines.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/posix/getaddrinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ getaddrinfo (const char *name, const char *service,
freeaddrinfo (p);
free (in6ai);

return -(i & GAIH_EAI);
return -(last_i & GAIH_EAI);
}
if (end)
while (*end)
Expand Down

0 comments on commit 105a492

Please sign in to comment.