diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-21 16:32:29 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-21 16:32:29 -0700 |
commit | 4a4f1496c1b2fe6dc8336ee5f00c09568165a42a (patch) | |
tree | 0dc91e2b6f8efff8ec2a9dcb2c400e2c18ed0fc2 /src/csharp/ext | |
parent | 736689dbcea0d3f83389b5d84fb6a1ec2078805d (diff) |
Rename grpc_channel_create to grpc_insecure_channel_create
Diffstat (limited to 'src/csharp/ext')
-rw-r--r-- | src/csharp/ext/grpc_csharp_ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/ext/grpc_csharp_ext.c b/src/csharp/ext/grpc_csharp_ext.c index 7dd1959a5f..eed286c7d6 100644 --- a/src/csharp/ext/grpc_csharp_ext.c +++ b/src/csharp/ext/grpc_csharp_ext.c @@ -315,7 +315,7 @@ grpcsharp_completion_queue_pluck(grpc_completion_queue *cq, void *tag) { GPR_EXPORT grpc_channel *GPR_CALLTYPE grpcsharp_channel_create(const char *target, const grpc_channel_args *args) { - return grpc_channel_create(target, args); + return grpc_insecure_channel_create(target, args); } GPR_EXPORT void GPR_CALLTYPE grpcsharp_channel_destroy(grpc_channel *channel) { |