From: Alan T. DeKok Date: Thu, 12 Jan 2017 15:05:41 +0000 (-0500) Subject: don't indent again if we're resuming X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b62afbcbade5e7299c8c73162d74cab59f7b522f;p=thirdparty%2Ffreeradius-server.git don't indent again if we're resuming --- diff --git a/src/main/unlang_interpret.c b/src/main/unlang_interpret.c index 2217fb74ad8..202ee02bba7 100644 --- a/src/main/unlang_interpret.c +++ b/src/main/unlang_interpret.c @@ -1030,7 +1030,7 @@ redo: break; } - if (unlang_ops[instruction->type].children) { + if ((unlang_ops[instruction->type].children) && !frame->resume) { RDEBUG2("%s {", instruction->debug_name); RINDENT(); }