From: Dave Love Date: Mon, 2 Oct 2000 16:42:47 +0000 (+0000) Subject: (Fopen_network_stream): Use HAVE_GAI_STRERROR. X-Git-Tag: emacs-pretest-21.0.90~1218 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6270f62c2edd9f1c4cc047adae1b63ec913110b;p=emacs.git (Fopen_network_stream): Use HAVE_GAI_STRERROR. --- diff --git a/src/process.c b/src/process.c index 1fcbc2311a3..a4845c99d58 100644 --- a/src/process.c +++ b/src/process.c @@ -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. */