From bbd74245ed39d00b26fbb0524e30b20420bc5ca8 Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Tue, 25 Jan 2022 17:19:28 -0600 Subject: [PATCH] Print the error... --- src/lib/unlang/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index e4e47ef2f3..849bd3bcb1 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -303,7 +303,7 @@ static bool pass2_fixup_cond_map(fr_cond_t *c, CONF_ITEM *ci, fr_dict_t const *d * / RHS attribute(s), go check them. */ if (fr_cond_promote_types(c, NULL, NULL, NULL) < 0) { - cf_log_err(ci, "Failed parsing condition after dynamic attributes were defined."); + cf_log_perr(ci, "Failed parsing condition after dynamic attributes were defined"); return false; } } -- 2.47.2