aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp/helloworld/greeter_client.cc
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-11-18 11:41:30 -0800
committerGravatar yang-g <yangg@google.com>2015-11-18 11:41:30 -0800
commit71b962634eceacae336b1c706829e4ad9621b397 (patch)
tree35378c669bf04c24097a403af65a5adb8c82e812 /examples/cpp/helloworld/greeter_client.cc
parent42630b010f398ca072a0ba89648855c3052c6594 (diff)
parent75b53d6a5d891fa33a9173318b1446faeaf154e4 (diff)
merge with head
Diffstat (limited to 'examples/cpp/helloworld/greeter_client.cc')
-rw-r--r--examples/cpp/helloworld/greeter_client.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cpp/helloworld/greeter_client.cc b/examples/cpp/helloworld/greeter_client.cc
index 6cd8353a9f..bf3b63cb57 100644
--- a/examples/cpp/helloworld/greeter_client.cc
+++ b/examples/cpp/helloworld/greeter_client.cc
@@ -84,9 +84,9 @@ int main(int argc, char** argv) {
// Instantiate the client. It requires a channel, out of which the actual RPCs
// are created. This channel models a connection to an endpoint (in this case,
// localhost at port 50051). We indicate that the channel isn't authenticated
- // (use of InsecureCredentials()).
- GreeterClient greeter(
- grpc::CreateChannel("localhost:50051", grpc::InsecureCredentials()));
+ // (use of InsecureChannelCredentials()).
+ GreeterClient greeter(grpc::CreateChannel(
+ "localhost:50051", grpc::InsecureChannelCredentials()));
std::string user("world");
std::string reply = greeter.SayHello(user);
std::cout << "Greeter received: " << reply << std::endl;