Skip to content

Commit

Permalink
Fix parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Dec 10, 2015
1 parent f3ffc55 commit a238655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/interpreter.c
Expand Up @@ -919,7 +919,7 @@ static void modcall_recurse(REQUEST *request, modcall_stack_t *stack, rlm_rcode_
if (entry->unwind != 0) goto done;

case MODCALL_NEXT_SIBLING:
if ((action == MODCALL_NEXT_SIBLING && modcall_brace[c->type])) RDEBUG2("}");
if ((action == MODCALL_NEXT_SIBLING) && modcall_brace[c->type]) RDEBUG2("}");

next_sibling:
if (!entry->do_next_sibling) goto done;
Expand Down

0 comments on commit a238655

Please sign in to comment.