diff --git a/lib/hostip.c b/lib/hostip.c index 4ca6000458b3d3abfd516be3fc5f7608a41e3b2d..c6cd28b758a26210b39c243a74a204c2f6f38b1f 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -344,7 +344,7 @@ Curl_addrinfo *Curl_getaddrinfo(struct SessionHandle *data, snprintf(sbuf, sizeof(sbuf), "%d", port); error = getaddrinfo(hostname, sbuf, &hints, &res); if (error) { - infof(data, "getaddrinfo(3) failed for %s\n", hostname); + infof(data, "getaddrinfo(3) failed for %s:%d\n", hostname, port); return NULL; } *bufp=(char *)res; /* make it point to the result struct */