From: Alan T. DeKok Date: Tue, 31 May 2022 21:13:12 +0000 (-0400) Subject: print head flags, too X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec37869b92203609cd9a79868da83a0b46f71f4f;p=thirdparty%2Ffreeradius-server.git print head flags, too --- diff --git a/src/lib/unlang/xlat_tokenize.c b/src/lib/unlang/xlat_tokenize.c index e67eefafaa5..51a0f972284 100644 --- a/src/lib/unlang/xlat_tokenize.c +++ b/src/lib/unlang/xlat_tokenize.c @@ -1071,6 +1071,12 @@ static void _xlat_debug(xlat_exp_head_t const *head, int depth) fr_assert(head != NULL); + INFO_INDENT("head flags = { %s %s %s %s }", + head->flags.needs_resolving ? "need_resolving" : "", + head->flags.needs_async ? "need_async" : "", + head->flags.pure ? "pure" : "", + head->flags.can_purify ? "can_purify" : ""); + xlat_exp_foreach(head, node) { INFO_INDENT("[%d] flags = { %s %s %s %s }", i++, node->flags.needs_resolving ? "need_resolving" : "",