]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Tidy format
authorNick Porter <nick@portercomputing.co.uk>
Fri, 8 Jan 2021 13:34:10 +0000 (13:34 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 21 Jan 2021 23:05:49 +0000 (23:05 +0000)
src/lib/unlang/subrequest.c

index 392894d5e80dd3d7703fbd8fc4a649896847f172..6bfc1cc443ff5b795fe4a993d6f31a4eca62f9ea 100644 (file)
@@ -34,7 +34,7 @@ RCSID("$Id$")
  */
 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.
@@ -87,7 +87,7 @@ static void unlang_subrequest_signal(request_t *request, fr_state_signal_t actio
        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);
 }