aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Hope Casey-Allen <hcaseyal@google.com>2018-06-27 13:00:52 -0700
committerGravatar Hope Casey-Allen <hcaseyal@google.com>2018-06-29 12:06:03 -0700
commit95554840a81cbcd5407e6b5a2e5c231b8baa2af8 (patch)
treee10778706920b46291c580abb50652a2f78c7cb6 /src
parent95800f416268f27f2563ffdcf3847fe9f930a1c2 (diff)
Fix macro error and clang tidy
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/security/transport/server_auth_filter.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/security/transport/server_auth_filter.cc b/src/core/lib/security/transport/server_auth_filter.cc
index c6213bd09e..b49049c557 100644
--- a/src/core/lib/security/transport/server_auth_filter.cc
+++ b/src/core/lib/security/transport/server_auth_filter.cc
@@ -215,7 +215,8 @@ static grpc_error* init_call_elem(grpc_call_element* elem,
// data and save it in the call context.
grpc_server_security_context* server_ctx =
grpc_server_security_context_create(args->arena);
- server_ctx->auth_context = GRPC_AUTH_CONTEXT_REF(chand->auth_context);
+ server_ctx->auth_context =
+ GRPC_AUTH_CONTEXT_REF(chand->auth_context, "server_auth_filter");
calld->auth_context = server_ctx->auth_context;
if (args->context[GRPC_CONTEXT_SECURITY].value != nullptr) {
args->context[GRPC_CONTEXT_SECURITY].destroy(