*/
typedef struct {
rlm_rcode_t *p_result; //!< Where to store the result.
- request_t *child; //!< Pre-allocated child request.
+ request_t *child; //!< Pre-allocated child request.
bool free_child; //!< Whether we should free the child after
///< it completes.
bool detachable; //!< Whether the request can be detached.
unlang_stack_t *stack = request->stack;
unlang_stack_frame_t *frame = &stack->frame[stack->depth];
unlang_frame_state_subrequest_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_subrequest_t);
- request_t *child = talloc_get_type_abort(state->child, request_t);
+ request_t *child = talloc_get_type_abort(state->child, request_t);
unlang_interpret_signal(child, action);
}