From: Nick Porter Date: Thu, 4 Apr 2024 17:31:13 +0000 (+0100) Subject: Fix up args for %log.destination() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aa3ceef9c2aeef6038290ed3524290919ae0819;p=thirdparty%2Ffreeradius-server.git Fix up args for %log.destination() So they're individual value boxes rather than groups --- diff --git a/src/lib/unlang/xlat_builtin.c b/src/lib/unlang/xlat_builtin.c index d1837191d63..afe224133b5 100644 --- a/src/lib/unlang/xlat_builtin.c +++ b/src/lib/unlang/xlat_builtin.c @@ -1180,9 +1180,9 @@ static int _log_dst_free(fr_log_t *log) } static xlat_arg_parser_t const xlat_func_log_dst_args[] = { - { .required = true, .type = FR_TYPE_STRING }, - { .required = false, .type = FR_TYPE_UINT32 }, - { .required = false, .type = FR_TYPE_STRING }, + { .required = true, .type = FR_TYPE_STRING, .concat = true }, + { .required = false, .type = FR_TYPE_UINT32, .single = true }, + { .required = false, .type = FR_TYPE_STRING, .concat = true }, XLAT_ARG_PARSER_TERMINATOR };