aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-02-24 15:37:10 -0800
committerGravatar Tim Emiola <temiola@google.com>2015-02-24 15:37:10 -0800
commit957537e01680f071dfc295d14988e55b2681fac4 (patch)
treeb86a3d00ce8f289a3bd49c379842ef53f5abe772 /src
parent175533c8e4a56d221bbc3aa27ea700afa4b9ea9d (diff)
Reflect a C-api name change
Diffstat (limited to 'src')
-rw-r--r--src/ruby/ext/grpc/rb_credentials.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/ext/grpc/rb_credentials.c b/src/ruby/ext/grpc/rb_credentials.c
index 778270735b..4ee5d6b51c 100644
--- a/src/ruby/ext/grpc/rb_credentials.c
+++ b/src/ruby/ext/grpc/rb_credentials.c
@@ -125,7 +125,7 @@ static VALUE grpc_rb_credentials_init_copy(VALUE copy, VALUE orig) {
Creates the default credential instances. */
static VALUE grpc_rb_default_credentials_create(VALUE cls) {
grpc_rb_credentials *wrapper = ALLOC(grpc_rb_credentials);
- wrapper->wrapped = grpc_default_credentials_create();
+ wrapper->wrapped = grpc_google_default_credentials_create();
if (wrapper->wrapped == NULL) {
rb_raise(rb_eRuntimeError,
"could not create default credentials, not sure why");