aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/bad_ssl
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-01-26 12:08:11 -0800
committerGravatar GitHub <noreply@github.com>2017-01-26 12:08:11 -0800
commit4ffcb2058df96c1fa0a319cd3e5d4aa9358e5bae (patch)
treed7d7b7263992250585ca5084daf2ce1bb0705838 /test/core/bad_ssl
parent890ccaedca87eb8f5c85889ce68d71f7b771d6f5 (diff)
parentdb74844fb6331370b1804d0034025fe27e8098ce (diff)
Merge pull request #9465 from markdroth/core_api_change
Move parameters for all grpc_op types into their own sub-structs.
Diffstat (limited to 'test/core/bad_ssl')
-rw-r--r--test/core/bad_ssl/bad_ssl_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/bad_ssl/bad_ssl_test.c b/test/core/bad_ssl/bad_ssl_test.c
index f8a9fe6cac..41b514be1c 100644
--- a/test/core/bad_ssl/bad_ssl_test.c
+++ b/test/core/bad_ssl/bad_ssl_test.c
@@ -100,7 +100,7 @@ static void run_test(const char *target, size_t nops) {
op->reserved = NULL;
op++;
op->op = GRPC_OP_RECV_INITIAL_METADATA;
- op->data.recv_initial_metadata = &initial_metadata_recv;
+ op->data.recv_initial_metadata.recv_initial_metadata = &initial_metadata_recv;
op->flags = 0;
op->reserved = NULL;
op++;