Skip to content

Commit

Permalink
Fix some missed renames
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jun 21, 2024
1 parent 9d8f82b commit 7796d0f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/modules/rlm_lua/rlm_lua.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ module_rlm_t rlm_lua = {
.detach = mod_detach,
.thread_detach = mod_thread_detach
},
.method = {
.method_group = {
.bindings = (module_method_binding_t[]){
/*
* Hack to support old configurations
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_mruby/rlm_mruby.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ module_rlm_t rlm_mruby = {
.instantiate = mod_instantiate,
.detach = mod_detach,
},
.method = {
.method_group = {
.bindings = (module_method_binding_t[]){
/*
* Hack to support old configurations
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_securid/rlm_securid.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ module_rlm_t rlm_securid = {
.instantiate = mod_instantiate,
.detach = mod_detach
},
.method = {
.method_group = {
.bindings = (module_method_binding_t[]){
{ .section = SECTION_NAME("authenticate", CF_IDENT_ANY), .method = mod_authenticate },
MODULE_BINDING_TERMINATOR
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_sigtran/rlm_sigtran.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ module_rlm_t rlm_sigtran = {
.thread_instantiate = mod_thread_instantiate,
.thread_detach = mod_thread_detach
},
.method = {
.method_group = {
.bindings = (module_method_binding_t[]){
{ .section = SECTION_NAME(CF_IDENT_ANY, CF_IDENT_ANY), .method = mod_authorize },
MODULE_BINDING_TERMINATOR
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_winbind/rlm_winbind.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ module_rlm_t rlm_winbind = {
.bootstrap = mod_bootstrap,
.detach = mod_detach
},
.method = {
.method_group = {
.bindings = (module_method_binding_t[]){
{ .section = SECTION_NAME("authenticate", CF_IDENT_ANY), .method = mod_authenticate, .method_env = &winbind_auth_method_env },
{ .section = SECTION_NAME("recv", CF_IDENT_ANY), .method = mod_authorize, .method_env = &winbind_autz_method_env },
Expand Down
2 changes: 1 addition & 1 deletion src/tests/modules/test/section_names.unlang
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# .method = {
# .method_group = {
# .bindings = (module_method_binding_t[]){
# { .section = SECTION_NAME("recv", "Access-Challenge"), .method = mod_return },
# { .section = SECTION_NAME("name1_null", NULL), .method = mod_return },
Expand Down

0 comments on commit 7796d0f

Please sign in to comment.