From: Arran Cudbard-Bell Date: Thu, 8 Dec 2022 20:41:27 +0000 (-0600) Subject: Param is now used X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7b81570b19f30367818d433f9caf07d76fc16e4;p=thirdparty%2Ffreeradius-server.git Param is now used --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index e346cf3ff30..22eeee2e61a 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -2025,7 +2025,7 @@ static unlang_t *compile_edit_pair(unlang_t *parent, unlang_compile_t *unlang_ct * Definitions which are adjacent to one another are automatically merged * into one larger variable definition. */ -static unlang_t *compile_variable(unlang_t *parent, unlang_compile_t *unlang_ctx, unlang_t **prev, CONF_PAIR *cp, UNUSED tmpl_rules_t *t_rules) +static unlang_t *compile_variable(unlang_t *parent, unlang_compile_t *unlang_ctx, unlang_t **prev, CONF_PAIR *cp, tmpl_rules_t *t_rules) { unlang_variable_t *var, *var_free; unlang_t *c = NULL, *out = UNLANG_IGNORE;