(Fopen_network_stream): Use HAVE_GAI_STRERROR.

This commit is contained in:
Dave Love 2000-10-02 16:42:47 +00:00
parent 9d280ef705
commit f6270f62c2

View file

@ -1822,7 +1822,12 @@ Fourth arg SERVICE is name of the service desired, or an integer\n\
hints.ai_protocol = 0;
ret = getaddrinfo (XSTRING (host)->data, portstring, &hints, &res);
if (ret)
#ifdef HAVE_GAI_STRERROR
error ("%s/%s %s", XSTRING (host)->data, portstring, gai_strerror(ret));
#else
error ("%s/%s getaddrinfo error %d", XSTRING (host)->data, portstring,
ret);
#endif
immediate_quit = 0;
/* Do this in case we never enter the for-loop below. */