aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 22:08:35 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 22:08:35 -0700
commitcbdffa4227bb4e1cc1b358a9bfcc93479b27f3f4 (patch)
tree7e6ed6b874f0f80d2bc8d01676358e5e9153cba8
parent510a920c753213df46587decb2ec87d2d1101e5d (diff)
parent5cc1e2ec4b0e6a100dab285c74aed8233add8776 (diff)
Merge branch 'grpc_security_abi' into credentials_naming_and_cleanup
-rw-r--r--src/php/ext/grpc/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/ext/grpc/channel.c b/src/php/ext/grpc/channel.c
index 080a939662..a4313b6bd4 100644
--- a/src/php/ext/grpc/channel.c
+++ b/src/php/ext/grpc/channel.c
@@ -148,7 +148,7 @@ PHP_METHOD(Channel, __construct) {
return;
}
if (args_array == NULL) {
- channel->wrapped = grpc_insecure_channel_create(target, NULL, NULL, NULL);
+ channel->wrapped = grpc_insecure_channel_create(target, NULL, NULL);
} else {
array_hash = Z_ARRVAL_P(args_array);
if (zend_hash_find(array_hash, "credentials", sizeof("credentials"),