aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel/channel_stack.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-07-01 14:17:38 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-07-01 14:17:38 -0700
commit3c945ee2b3c3bf0fd01cc995332e252d1e10e51e (patch)
tree9bbd2d09cebc94133609932827b8fa7a71bb8365 /src/core/lib/channel/channel_stack.c
parentafa864244d921626480abc6e4408a2aa183396c3 (diff)
parent20caeb182cbc152e7e038306a9b01f438f79ca41 (diff)
Merge branch 'master' into filter_call_init_failure
Diffstat (limited to 'src/core/lib/channel/channel_stack.c')
-rw-r--r--src/core/lib/channel/channel_stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/channel_stack.c b/src/core/lib/channel/channel_stack.c
index ff824c781f..ada5e8d40c 100644
--- a/src/core/lib/channel/channel_stack.c
+++ b/src/core/lib/channel/channel_stack.c
@@ -269,6 +269,6 @@ void grpc_call_element_send_cancel(grpc_exec_ctx *exec_ctx,
grpc_call_element *cur_elem) {
grpc_transport_stream_op op;
memset(&op, 0, sizeof(op));
- op.cancel_with_status = GRPC_STATUS_CANCELLED;
+ op.cancel_error = GRPC_ERROR_CANCELLED;
grpc_call_next_op(exec_ctx, cur_elem, &op);
}