]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix some missed renames
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 21 Jun 2024 00:06:36 +0000 (18:06 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 21 Jun 2024 00:06:36 +0000 (18:06 -0600)
src/modules/rlm_lua/rlm_lua.c
src/modules/rlm_mruby/rlm_mruby.c
src/modules/rlm_securid/rlm_securid.c
src/modules/rlm_sigtran/rlm_sigtran.c
src/modules/rlm_winbind/rlm_winbind.c
src/tests/modules/test/section_names.unlang

index b03488d0bf989da44c181396974f9b2da7ef1e7e..f65d06bfcf8297adb3e158d97fefe2ade77acd77 100644 (file)
@@ -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
index 26f4fe5a45faa8a3c829d5a6d79df58bb3fce474..9b3290940629e0a41f8e355bb87886c5e7c65805 100644 (file)
@@ -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
index 99b698049798aa8a02bb0cef11db71783246520c..181157cfdff840781e9658bc132515fa7689dc0c 100644 (file)
@@ -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
index 4b6b2f34663ea5c06aa7f4eb68bc656f2eca9755..9357724e28282a14838a0030728127222bbccfff 100644 (file)
@@ -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
index 6185e3409f8d3dcad8df3c110b1a35ca5a13515d..95d0fc72d8239a9a221c94699b25fb9503152dc2 100644 (file)
@@ -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 },
index 085d1a6165801827fdbe0f84cc971d7cb5f63af5..bd4cb5a9e9edd88d1b65ae9134b964eee6e32910 100644 (file)
@@ -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 },