]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix typo that meant thread instance data wasn't passed into xlats.
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 22 Jan 2026 21:32:31 +0000 (13:32 -0800)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 22 Jan 2026 23:34:01 +0000 (15:34 -0800)
src/lib/unlang/xlat_ctx.h

index 390c7121c2bae2fbf0f9d27bb987ed8274abf951..2b193b90ec264f88a34448cbeb52b96cf5051e0d 100644 (file)
@@ -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
 }