From f6270f62c2edd9f1c4cc047adae1b63ec913110b Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 2 Oct 2000 16:42:47 +0000 Subject: [PATCH] (Fopen_network_stream): Use HAVE_GAI_STRERROR. --- src/process.c | 5 +++++ 1 file changed, 5 insertions(+) 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. */ -- 2.39.2