From: Arran Cudbard-Bell Date: Thu, 22 Jan 2026 21:32:31 +0000 (-0800) Subject: Fix typo that meant thread instance data wasn't passed into xlats. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23505c0745cdc5dc2ea46f52659020c13a81a936;p=thirdparty%2Ffreeradius-server.git Fix typo that meant thread instance data wasn't passed into xlats. --- diff --git a/src/lib/unlang/xlat_ctx.h b/src/lib/unlang/xlat_ctx.h index 390c7121c2b..2b193b90ec2 100644 --- a/src/lib/unlang/xlat_ctx.h +++ b/src/lib/unlang/xlat_ctx.h @@ -121,7 +121,7 @@ struct xlat_thread_inst_ctx_s { * @param[in] _el To register any I/O handlers or timers against. * @param[in] _uctx passed when the instantiation function was registered. */ -#define XLAT_THREAD_INST_CTX(_inst, _thread, _ex, _mctx, _el, _uctx) &(xlat_thread_inst_ctx_t){ .inst = _inst, .ex = _ex, .mctx = _mctx, .el = _el, .uctx = _uctx } +#define XLAT_THREAD_INST_CTX(_inst, _thread, _ex, _mctx, _el, _uctx) &(xlat_thread_inst_ctx_t){ .inst = _inst, .thread = _thread, .ex = _ex, .mctx = _mctx, .el = _el, .uctx = _uctx } #ifdef __cplusplus }