From: Arran Cudbard-Bell Date: Sun, 19 Feb 2023 23:26:49 +0000 (-0600) Subject: xlat: Fix inverted args X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e10b4cc422599225bda8bb5a4b9aa5902b012f7b;p=thirdparty%2Ffreeradius-server.git xlat: Fix inverted args --- diff --git a/src/lib/unlang/xlat_tokenize.c b/src/lib/unlang/xlat_tokenize.c index 19da8ed7859..3cda3904284 100644 --- a/src/lib/unlang/xlat_tokenize.c +++ b/src/lib/unlang/xlat_tokenize.c @@ -1515,7 +1515,7 @@ fr_slen_t xlat_tokenize_argv(TALLOC_CTX *ctx, xlat_exp_head_t **out, fr_sbuff_t * Alloc a new node to hold the child nodes * that make up the argument. */ - MEM(node = xlat_exp_alloc(head, XLAT_GROUP, 0, NULL)); + MEM(node = xlat_exp_alloc(head, XLAT_GROUP, NULL, 0)); node->quote = quote; switch (quote) {