aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-02 12:51:15 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-02 12:51:15 +0000
commitdd028817884ca3262ae4e136332a7fdf469787e9 (patch)
treeb6e1c993c8d3db73844add57153b3061749825ed /lib
parentced89553250030849a9896dae1d446c5ccf1ac3c (diff)
added port number in informational connect message
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/url.c b/lib/url.c
index bc4ae3b2c..198170dce 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2047,9 +2047,10 @@ static CURLcode CreateConnection(struct SessionHandle *data,
snprintf(hbuf, sizeof(hbuf), "?");
}
if (ai->ai_canonname) {
- infof(data, "Connected to %s (%s)\n", ai->ai_canonname, hbuf);
+ infof(data, "Connected to %s (%s) port %d\n", ai->ai_canonname, hbuf,
+ conn->port);
} else {
- infof(data, "Connected to %s\n", hbuf);
+ infof(data, "Connected to %s port %d\n", hbuf, conn->port);
}
}
#else