From: Alan T. DeKok Date: Wed, 12 Jun 2024 18:07:05 +0000 (-0400) Subject: fix compiler warning X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d7859b313dddb7471a81dfe48d343ba2ab67f4e;p=thirdparty%2Ffreeradius-server.git fix compiler warning --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 629f0812a82..759bc6f59b6 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -4699,7 +4699,7 @@ check_for_module: modules = cf_section_find(cf_root(ci), "modules", NULL); if (!modules) { cf_log_err(ci, "Failed compiling \"%s\" as a module or policy as no modules are enabled", name); - cf_log_err(ci, "Please verify that modules { ... } section is present in the server configuration", name); + cf_log_err(ci, "Please verify that modules { ... } section is present in the server configuration"); return NULL; }