From: Alan T. DeKok Date: Fri, 22 Apr 2022 20:53:46 +0000 (-0400) Subject: not yet for this X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d820c043b485a7de984b231ee7e9de85d7f60a01;p=thirdparty%2Ffreeradius-server.git not yet for this --- diff --git a/src/lib/unlang/xlat.c b/src/lib/unlang/xlat.c index 7edace23758..8b5b4db5e9f 100644 --- a/src/lib/unlang/xlat.c +++ b/src/lib/unlang/xlat.c @@ -226,7 +226,7 @@ int unlang_xlat_push(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out, * Allocate its state, and setup a cursor for the xlat nodes */ MEM(frame->state = state = talloc_zero(stack, unlang_frame_state_xlat_t)); - state->head = talloc_get_type_abort_const(xlat, xlat_exp_head_t); /* Ensure the node is valid */ + state->head = talloc_get_type_abort_const(xlat, xlat_exp_t); /* Ensure the node is valid */ state->exp = xlat_exp_head(state->head); state->success = p_success; state->ctx = ctx;