From 8e894b8f3367ab9b820c7b682317aeaaf01d4c51 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Fri, 11 Jul 2025 07:18:19 -0400 Subject: [PATCH] add error message to xlat_redundant when it fails --- src/lib/unlang/xlat_redundant.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/unlang/xlat_redundant.c b/src/lib/unlang/xlat_redundant.c index c171c5e99c..dd4aeea73b 100644 --- a/src/lib/unlang/xlat_redundant.c +++ b/src/lib/unlang/xlat_redundant.c @@ -105,6 +105,7 @@ static xlat_action_t xlat_redundant_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, * We're back to the first one we tried, fail... */ if (rctx->current == rctx->first) { + fr_strerror_printf("Failed all choices for redundant expansion %s", xctx->ex->fmt); error: xa = XLAT_ACTION_FAIL; goto done; -- 2.47.3