From: Arran Cudbard-Bell Date: Mon, 22 Mar 2021 10:31:02 +0000 (+0000) Subject: Use the synchronous interpreter for xlats X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd4db3bb093b0d093f009edae4053be7c9e71da2;p=thirdparty%2Ffreeradius-server.git Use the synchronous interpreter for xlats --- diff --git a/src/lib/unlang/xlat_eval.c b/src/lib/unlang/xlat_eval.c index ab58d550ee5..e3b54d22c4e 100644 --- a/src/lib/unlang/xlat_eval.c +++ b/src/lib/unlang/xlat_eval.c @@ -1519,7 +1519,7 @@ static char *xlat_sync_eval(TALLOC_CTX *ctx, request_t *request, xlat_exp_t cons return NULL; } - switch (unlang_interpret(request)) { + switch (unlang_interpret_synchronous(request)) { default: break;