From: Alan T. DeKok Date: Wed, 8 Dec 2021 16:30:04 +0000 (-0500) Subject: print the correct field X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ff28e04434550f120b0fb5d8f58130443f9696a;p=thirdparty%2Ffreeradius-server.git print the correct field --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 83a87a66c9..71f65dee6a 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -1637,7 +1637,7 @@ static unlang_t *compile_edit_section(unlang_t *parent, unlang_compile_t *unlang } op = cf_section_name2_quote(cs); if ((op == T_INVALID) || !fr_assignment_op[op]) { - cf_log_err(cs, "Invalid operator '%s' for editing list %s.", name, cf_section_name1(cs)); + cf_log_err(cs, "Invalid operator '%s' for editing list %s.", fr_tokens[op], cf_section_name1(cs)); return NULL; }