From: Alan T. DeKok Date: Sat, 22 Nov 2025 16:00:00 +0000 (-0500) Subject: print the attribute name, and not the enum name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdf88492defacbbf172cec167c775c02fb3e9824;p=thirdparty%2Ffreeradius-server.git print the attribute name, and not the enum name --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 8f95bf1a576..4fba378d898 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -62,7 +62,7 @@ static void rdebug_assign(request_t *request, char const *attr, fr_token_t op, f fr_assert(fr_type_is_leaf(box->type)); if ((name = fr_value_box_enum_name(box)) != NULL) { - RDEBUG2("%s %s ::%s", name, fr_tokens[op], name); + RDEBUG2("%s %s ::%s", attr, fr_tokens[op], name); break; }