aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-26 15:14:19 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-26 15:14:19 +0000
commita9f2274bd8e027465386b227b47156468e477146 (patch)
treed8117cacb2fac8a9a6b953e6ab3b52e076076a82 /lib/url.c
parent92179ff99027e45afc9a14937489b62039ed240a (diff)
NI_MAXHOST is not generally available, we use plain 256 bytes for the hostname
instead, its only for debug verbose output anyway
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 33048c8b5..fec12c22a 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