| Index: net/tools/quic/quic_client_bin.cc
|
| diff --git a/net/tools/quic/quic_client_bin.cc b/net/tools/quic/quic_client_bin.cc
|
| index 8c979487c62c298428ec1d9d8235585730ffd930..a6fece5a06f8ad66c58b96fc70751cb0e3fe24e4 100644
|
| --- a/net/tools/quic/quic_client_bin.cc
|
| +++ b/net/tools/quic/quic_client_bin.cc
|
| @@ -245,8 +245,7 @@ int main(int argc, char* argv[]) {
|
| net::QuicIpAddress(net::QuicIpAddressImpl(addresses[0].address()));
|
| }
|
|
|
| - string host_port =
|
| - base::StringPrintf("%s:%d", ip_addr.ToString().c_str(), port);
|
| + string host_port = net::QuicStrCat(ip_addr.ToString(), ":", port);
|
| VLOG(1) << "Resolved " << host << " to " << host_port << endl;
|
|
|
| // Build the client, and try to connect.
|
|
|