From: Arran Cudbard-Bell Date: Thu, 30 Jun 2022 21:58:34 +0000 (-0500) Subject: Add hack to make test.authorize work again X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8149f495f675f238f9ac342851a5e3c8f70df91c;p=thirdparty%2Ffreeradius-server.git Add hack to make test.authorize work again --- diff --git a/src/modules/rlm_test/rlm_test.c b/src/modules/rlm_test/rlm_test.c index ec80560f153..d3d0be0f520 100644 --- a/src/modules/rlm_test/rlm_test.c +++ b/src/modules/rlm_test/rlm_test.c @@ -520,6 +520,8 @@ module_rlm_t rlm_test = { .thread_detach = mod_thread_detach }, .method_names = (module_method_name_t[]){ + { .name1 = "authorize", .name2 = CF_IDENT_ANY, .method = mod_authorize }, + { .name1 = "recv", .name2 = "accounting-request", .method = mod_preacct }, { .name1 = "recv", .name2 = CF_IDENT_ANY, .method = mod_authorize }, { .name1 = "accounting", .name2 = CF_IDENT_ANY, .method = mod_accounting },