From: Arran Cudbard-Bell Date: Thu, 24 Oct 2024 23:00:10 +0000 (-0600) Subject: Don't load the RADIUS dictionary in the xlat library X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fef0cd8cf9f7db831c9800ffb354b7c198d272b9;p=thirdparty%2Ffreeradius-server.git Don't load the RADIUS dictionary in the xlat library --- diff --git a/src/lib/unlang/xlat_eval.c b/src/lib/unlang/xlat_eval.c index 10dff0f4283..3067beba449 100644 --- a/src/lib/unlang/xlat_eval.c +++ b/src/lib/unlang/xlat_eval.c @@ -40,11 +40,9 @@ 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 } };