From: Alan T. DeKok Date: Thu, 6 Jul 2023 13:39:26 +0000 (-0400) Subject: quote token so the message is easier to understand X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6651ee14a8463a7568a6f68458dd9722a5fa2735;p=thirdparty%2Ffreeradius-server.git quote token so the message is easier to understand --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 29c373c732c..b3aac2bc006 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -447,7 +447,7 @@ apply_list: if (current->el) { rcode = fr_edit_list_apply_list_assignment(current->el, current->lhs.vp, map->op, children, copy_vps); - if (rcode < 0) RPERROR("Failed performing list %s operation", fr_tokens[map->op]); + if (rcode < 0) RPERROR("Failed performing list '%s' operation", fr_tokens[map->op]); } else { fr_assert(map->op == T_OP_EQ);