From: Catalina Pineros Date: Wed, 11 Mar 2026 20:09:17 +0000 (-0400) Subject: changed error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23b16b4d3685b77f6adc2453beeba4cb04c922ad;p=thirdparty%2Ffreeradius-server.git changed error message replaced hardcoded value with the more useful library->autoinit->name --- diff --git a/src/lib/server/global_lib.c b/src/lib/server/global_lib.c index 962ed687a36..b6deb3a465c 100644 --- a/src/lib/server/global_lib.c +++ b/src/lib/server/global_lib.c @@ -74,7 +74,7 @@ static int lib_init_call(global_lib_inst_t *lib) if ((cf_section_rules_push(cs, lib->autoinit->config)) < 0 || (cf_section_parse(lib, lib->autoinit->inst, cs) < 0)) { - cf_log_err(cs, "Failed evaluating configuration for libldap"); + cf_log_err(cs, "Failed evaluating configuration for %s", lib->autoinit->name); return -1; }