MEM(head = talloc_zero(ctx, xlat_exp_head_t));
fr_dlist_init(&head->dlist, xlat_exp_t, entry);
- head->flags.pure = head->flags.can_purify = true;
+ head->flags.constant = head->flags.pure = head->flags.can_purify = true;
#ifndef NDEBUG
head->file = file;
head->line = line;
fr_assert(head != NULL);
- INFO_INDENT("head flags = %s %s %s",
+ INFO_INDENT("head flags = %s %s %s %s",
head->flags.needs_resolving ? "need_resolving," : "",
head->flags.pure ? "pure" : "",
- head->flags.can_purify ? "can_purify" : "");
+ head->flags.can_purify ? "can_purify" : "",
+ head->flags.constant ? "constant" : "");
depth++;