From: Alan T. DeKok Date: Thu, 22 Jun 2017 20:01:57 +0000 (-0400) Subject: use CF_IDENT_ANY, and give it the right name... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24d2df746771371c6c53ecfdc58d775b05f662bd;p=thirdparty%2Ffreeradius-server.git use CF_IDENT_ANY, and give it the right name... --- diff --git a/src/modules/proto_radius/proto_radius_auth.c b/src/modules/proto_radius/proto_radius_auth.c index 8f85978418a..9a8ed6c8804 100644 --- a/src/modules/proto_radius/proto_radius_auth.c +++ b/src/modules/proto_radius/proto_radius_auth.c @@ -626,7 +626,7 @@ static int mod_instantiate(UNUSED void *instance, CONF_SECTION *listen_cs) return -1; } - while ((subcs = cf_section_find_next(server_cs, subcs, "process", NULL))) { + while ((subcs = cf_section_find_next(server_cs, subcs, "process", CF_IDENT_ANY))) { char const *name2; fr_value_box_t value = { .type = FR_TYPE_UINT32 }; fr_dict_enum_t *dv; @@ -667,7 +667,7 @@ static int mod_instantiate(UNUSED void *instance, CONF_SECTION *listen_cs) extern fr_app_process_t proto_radius_auth; fr_app_process_t proto_radius_auth = { .magic = RLM_MODULE_INIT, - .name = "radius_coa", + .name = "radius_auth", .instantiate = mod_instantiate, .process = mod_process, };