]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Formatting
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 26 Nov 2016 22:19:41 +0000 (17:19 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 26 Nov 2016 22:19:41 +0000 (17:19 -0500)
src/include/interpreter.h
src/main/unlang.c

index cf3160cfab3180a3ab11a06436fffe8abe62b8ce..4096325960e659f14b8a8a2707521d93bc2fe681 100644 (file)
@@ -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;
 
index ad91f73fff8393f87e8ea8c54aedd62f99531f79..099a2b04ec32df4f22e44bd9bdd1dbba31a56b86 100644 (file)
@@ -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().