]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix indent
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 18 Aug 2021 02:57:42 +0000 (21:57 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 18 Aug 2021 02:57:52 +0000 (21:57 -0500)
src/lib/unlang/interpret.c

index fc5d7ee7d09040f12888d261ca580c88c8d76a93..676aba95155bad074f4d689508445159ed54fb3b 100644 (file)
@@ -654,8 +654,8 @@ CC_HINT(hot) rlm_rcode_t unlang_interpret(request_t *request)
         *      Nothing in this section, use the top frame stack->result.
         */
        if ((stack->priority < 0) || (stack->result == RLM_MODULE_NOT_SET)) {
-                       RDEBUG4("** [%i] %s - empty section, using stack result (%s %d)", stack->depth, __FUNCTION__,
-                               fr_table_str_by_value(mod_rcode_table, stack->result, "<invalid>"), stack->priority);
+               RDEBUG4("** [%i] %s - empty section, using stack result (%s %d)", stack->depth, __FUNCTION__,
+                       fr_table_str_by_value(mod_rcode_table, stack->result, "<invalid>"), stack->priority);
                stack->result = frame->result;
                stack->priority = frame->priority;
        }