From: Nick Porter Date: Mon, 21 Oct 2024 16:44:49 +0000 (+0100) Subject: Revert "Don't load the RADIUS dictionary in the xlat code" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a040539405ef71fa23aeacb4cfb1e3dd1e66c2a;p=thirdparty%2Ffreeradius-server.git Revert "Don't load the RADIUS dictionary in the xlat code" This reverts commit 6cf9cd8db3a700b1ceb056cc14a0d03201966ed8. Breaks CI tests of foreign protocol decoding --- diff --git a/src/lib/unlang/xlat_eval.c b/src/lib/unlang/xlat_eval.c index 3067beba449..10dff0f4283 100644 --- a/src/lib/unlang/xlat_eval.c +++ b/src/lib/unlang/xlat_eval.c @@ -40,9 +40,11 @@ RCSID("$Id$") static int instance_count = 0; static fr_dict_t const *dict_freeradius; +static fr_dict_t const *dict_radius; static fr_dict_autoload_t xlat_eval_dict[] = { { .out = &dict_freeradius, .proto = "freeradius" }, + { .out = &dict_radius, .proto = "radius" }, { NULL } };