From: Nick Porter Date: Mon, 25 Aug 2025 09:53:52 +0000 (+0100) Subject: Set trigger_prefix for rlm_detail X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=655eaba49706c023009b5e370266e56b5d7f25e3;p=thirdparty%2Ffreeradius-server.git Set trigger_prefix for rlm_detail So per-instance triggers can just go in a trigger subsection rather than in file { trigger { ... } } --- diff --git a/src/modules/rlm_detail/rlm_detail.c b/src/modules/rlm_detail/rlm_detail.c index c6ef1fab1b..c0928e39b4 100644 --- a/src/modules/rlm_detail/rlm_detail.c +++ b/src/modules/rlm_detail/rlm_detail.c @@ -161,7 +161,7 @@ static int mod_instantiate(module_inst_ctx_t const *mctx) CONF_SECTION *conf = mctx->mi->conf; inst->ef = module_rlm_exfile_init(inst, conf, 256, fr_time_delta_from_sec(30), inst->locking, - inst->triggers, NULL, NULL); + inst->triggers, "modules.detail", NULL); if (!inst->ef) { cf_log_err(conf, "Failed creating log file context"); return -1;