(canon_host) [HAVE_GETADDRINFO]: Use = { 0, };' to initialize local hint'.

This commit is contained in:
Paul Eggert 2005-06-24 17:33:58 +00:00
parent 534ccf18c2
commit 406929bb9d
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2005-06-24 Paul Eggert <eggert@cs.ucla.edu>
* canon-host.c (canon_host) [HAVE_GETADDRINFO]: Use `= { 0, };' to
initialize local `hint'. This undoes the previous change, and
syncs with gnulib.
2005-06-23 Jim Meyering <jim@meyering.net>
* Makefile.am (libcoreutils_a_SOURCES): Remove xreadlink.c

View File

@ -54,9 +54,8 @@ canon_host (char const *host)
#if HAVE_GETADDRINFO
{
struct addrinfo hint;
struct addrinfo hint = { 0, };
struct addrinfo *res = NULL;
memset (&hint, 0, sizeof hint);
hint.ai_flags = AI_CANONNAME;
if (getaddrinfo (host, NULL, &hint, &res) == 0)
{