diff options
author | yang-g <yangg@google.com> | 2015-11-21 12:33:22 -0800 |
---|---|---|
committer | yang-g <yangg@google.com> | 2015-11-21 12:33:22 -0800 |
commit | f8843fb58c44f34654353d9a43a1266ae091725a (patch) | |
tree | bdd9576f7c11710faa54cd3ff90d1d6d414f3bbd /test/core/client_config | |
parent | 3ff9727a373e5e8819b9db288df99f8d7f68270e (diff) |
fix build and windows test
Diffstat (limited to 'test/core/client_config')
-rw-r--r-- | test/core/client_config/set_initial_connect_string_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/client_config/set_initial_connect_string_test.c b/test/core/client_config/set_initial_connect_string_test.c index 0b51eba732..13517b7c1f 100644 --- a/test/core/client_config/set_initial_connect_string_test.c +++ b/test/core/client_config/set_initial_connect_string_test.c @@ -48,7 +48,7 @@ struct rpc_state { char *target; - grpc_credentials *creds; + grpc_channel_credentials *creds; grpc_completion_queue *cq; grpc_channel *channel; grpc_call *call; @@ -145,7 +145,7 @@ static void cleanup_rpc(void) { grpc_event ev; gpr_slice_buffer_destroy(&state.incoming_buffer); gpr_slice_buffer_destroy(&state.temp_incoming_buffer); - grpc_credentials_unref(state.creds); + grpc_channel_credentials_unref(state.creds); grpc_call_destroy(state.call); grpc_completion_queue_shutdown(state.cq); do { |