From: Arran Cudbard-Bell Date: Sat, 26 Nov 2016 22:19:41 +0000 (-0500) Subject: Formatting X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aeccc7202cbac54bc040078ad597fa772af69ab;p=thirdparty%2Ffreeradius-server.git Formatting --- diff --git a/src/include/interpreter.h b/src/include/interpreter.h index cf3160cfab3..4096325960e 100644 --- a/src/include/interpreter.h +++ b/src/include/interpreter.h @@ -107,11 +107,11 @@ typedef enum { * The specialisations of the nodes describe additional details of the operation to be performed. */ typedef struct unlang_t { - struct unlang_t *parent; //!< Previous node. - struct unlang_t *next; //!< Next node (executed on #UNLANG_ACTION_CONTINUE et al). + struct unlang_t *parent; //!< Previous node. + struct unlang_t *next; //!< Next node (executed on #UNLANG_ACTION_CONTINUE et al). char const *name; //!< Unknown... char const *debug_name; //!< Printed in log messages when the node is executed. - unlang_type_t type; //!< The specialisation of this node. + unlang_type_t type; //!< The specialisation of this node. int actions[RLM_MODULE_NUMCODES]; //!< Priorities for the various return codes. } unlang_t; diff --git a/src/main/unlang.c b/src/main/unlang.c index ad91f73fff8..099a2b04ec3 100644 --- a/src/main/unlang.c +++ b/src/main/unlang.c @@ -1525,7 +1525,7 @@ void unlang_action(REQUEST *request, fr_state_action_t action) mr->action_callback(request, mr->module.module_instance->data, mutable, action); } -/** Yeild a request +/** Yield a request * * @param[in] request The current request. * @param[in] callback to call on unlang_resumable().