Loading lib/url.c +3 −2 Original line number Diff line number Diff line Loading @@ -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 Loading Loading
lib/url.c +3 −2 Original line number Diff line number Diff line Loading @@ -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 Loading