From: Alan T. DeKok Date: Tue, 10 Aug 2021 13:43:10 +0000 (-0400) Subject: load the library for the internal dictionary, too X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a2edd1de5c25a8ec03f18515023c5fd7ddaff38;p=thirdparty%2Ffreeradius-server.git load the library for the internal dictionary, too --- diff --git a/src/lib/util/dict_tokenize.c b/src/lib/util/dict_tokenize.c index 8cf6102adff..228b486cd19 100644 --- a/src/lib/util/dict_tokenize.c +++ b/src/lib/util/dict_tokenize.c @@ -2426,6 +2426,8 @@ int fr_dict_internal_afrom_file(fr_dict_t **out, char const *dict_subdir, char c dict_dependent_add(dict, "global"); } + if (dict_dlopen(dict, "internal") < 0) goto error; + *out = dict; return 0;