diff options
author | Yang Gao <yangg@google.com> | 2015-09-10 21:49:15 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-09-10 21:49:15 -0700 |
commit | 2df0f39553d78c09c1165be13ee2d63ada1445a2 (patch) | |
tree | f6c52d546e8db2f14a30311cd8e7cf09199a5d2c /src/core/surface | |
parent | 20943b0874aaea33feb00af1547de0173b5cf36d (diff) | |
parent | 1db5a8b30d9ca94c669f99c73f752c8033ae00cc (diff) |
Merge pull request #2533 from dgquintas/compression-accept-encoding
Enable servers to disable compression algorithms
Diffstat (limited to 'src/core/surface')
-rw-r--r-- | src/core/surface/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c index 6ece56371b..40190c2f54 100644 --- a/src/core/surface/call.c +++ b/src/core/surface/call.c @@ -533,7 +533,7 @@ static void set_encodings_accepted_by_peer( gpr_slice_buffer accept_encoding_parts; gpr_slice_buffer_init(&accept_encoding_parts); - gpr_slice_split(accept_encoding_slice, ", ", &accept_encoding_parts); + gpr_slice_split(accept_encoding_slice, ",", &accept_encoding_parts); /* No need to zero call->encodings_accepted_by_peer: grpc_call_create already * zeroes the whole grpc_call */ |