aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-11-03 08:16:19 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-11-03 08:16:19 -0700
commite30baeb6a3de046ccd4d6120a2b2a2dba67aef82 (patch)
tree591074536f6176d24c375bd23e49075caaf84e47 /src/core/lib/channel
parent638c38a79cf69577d2fa2ff4b546bc3ea97da860 (diff)
Minor cleanups.
Diffstat (limited to 'src/core/lib/channel')
-rw-r--r--src/core/lib/channel/message_size_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/channel/message_size_filter.c b/src/core/lib/channel/message_size_filter.c
index 86fdf72684..726bc4f165 100644
--- a/src/core/lib/channel/message_size_filter.c
+++ b/src/core/lib/channel/message_size_filter.c
@@ -70,7 +70,7 @@ static int message_size_limits_cmp(void* value1, void* value2) {
static const grpc_mdstr_hash_table_vtable message_size_limits_vtable = {
gpr_free, message_size_limits_copy, message_size_limits_cmp};
-static void* method_config_convert_value(const grpc_json* json) {
+static void* message_size_limits_create_from_json(const grpc_json* json) {
int max_request_message_bytes = -1;
int max_response_message_bytes = -1;
for (grpc_json* field = json->child; field != NULL; field = field->next) {
@@ -236,7 +236,7 @@ static void init_channel_elem(grpc_exec_ctx* exec_ctx,
GPR_ASSERT(channel_arg->type == GRPC_ARG_POINTER);
grpc_json_tree* json_tree = channel_arg->value.pointer.p;
chand->method_limit_table = grpc_method_config_table_create_from_json(
- json_tree->root, method_config_convert_value,
+ json_tree->root, message_size_limits_create_from_json,
&message_size_limits_vtable);
}
}