From 346a2689319123a99f7a4efa2c5316ba73b7be47 Mon Sep 17 00:00:00 2001 From: Bryan Duxbury Date: Sun, 15 Aug 2010 23:04:12 +0000 Subject: [PATCH] THRIFT-456. cpp: Bad IP address string in test/cpp/src/main.cpp This patch fixes a clear typo in main.cpp. Patch: Rush Manbert git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@985772 13f79535-47bb-0310-9956-ffa450edef68 --- test/cpp/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/src/main.cpp b/test/cpp/src/main.cpp index 46ee950d..2aad4d60 100644 --- a/test/cpp/src/main.cpp +++ b/test/cpp/src/main.cpp @@ -427,7 +427,7 @@ int main(int argc, char **argv) { for (size_t ix = 0; ix < clientCount; ix++) { - shared_ptr socket(new TSocket("127.0.01", port)); + shared_ptr socket(new TSocket("127.0.0.1", port)); shared_ptr bufferedSocket(new TBufferedTransport(socket, 2048)); shared_ptr protocol(new TBinaryProtocol(bufferedSocket)); shared_ptr serviceClient(new ServiceClient(protocol)); -- 2.17.1