diff options
author | murgatroid99 <michael.lumish@gmail.com> | 2015-01-20 15:59:55 -0800 |
---|---|---|
committer | murgatroid99 <michael.lumish@gmail.com> | 2015-01-20 15:59:55 -0800 |
commit | e1613dcd318f2b0240cea199d434dfeae05c5043 (patch) | |
tree | 5b17e4180b6b6e41ea201a8f0403de6c28bb8046 /src/core/security/auth.c | |
parent | 749985eb8df9bc96e289d9dc7ae205fa8491eabd (diff) | |
parent | c7ff547b86b5058fbbd8b578fc13af93e20c9d89 (diff) |
Merge branch 'master' of github.com:google/grpc
Diffstat (limited to 'src/core/security/auth.c')
-rw-r--r-- | src/core/security/auth.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/security/auth.c b/src/core/security/auth.c index e36bf2382f..f743b25838 100644 --- a/src/core/security/auth.c +++ b/src/core/security/auth.c @@ -157,5 +157,6 @@ static void destroy_channel_elem(grpc_channel_element *elem) { } const grpc_channel_filter grpc_client_auth_filter = { - call_op, channel_op, sizeof(call_data), init_call_elem, destroy_call_elem, - sizeof(channel_data), init_channel_elem, destroy_channel_elem, "auth"}; + call_op, channel_op, sizeof(call_data), + init_call_elem, destroy_call_elem, sizeof(channel_data), + init_channel_elem, destroy_channel_elem, "auth"}; |