From a9f2274bd8e027465386b227b47156468e477146 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 26 Apr 2004 15:14:19 +0000
Subject: [PATCH] NI_MAXHOST is not generally available, we use plain 256 bytes
 for the hostname instead, its only for debug verbose output anyway

---
 lib/url.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/url.c b/lib/url.c
index 33048c8b5f..fec12c22af 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1893,7 +1893,7 @@ static void verboseconnect(struct connectdata *conn)
 {
   struct SessionHandle *data = conn->data;
   const char *host=NULL;
-  char addrbuf[NI_MAXHOST];
+  char addrbuf[256];
 
   /* Get a printable version of the network address. */
 #ifdef ENABLE_IPV6
-- 
GitLab