From: Arran Cudbard-Bell Date: Thu, 15 Jun 2023 15:48:22 +0000 (-0400) Subject: Grammar X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12ce7c6aa64a2d106d6b73ac7d96df5e6994f83c;p=thirdparty%2Ffreeradius-server.git Grammar --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 2c672eb32e0..2e226ec3db7 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -93,7 +93,7 @@ static int tmpl_attr_from_result(TALLOC_CTX *ctx, map_t const *map, edit_result_ fr_value_box_t *box = fr_value_box_list_head(&out->result); if (!box) { - RWDEBUG("%s %s ... - Assignment failed to having no value on right-hand side", map->lhs->name, fr_tokens[map->op]); + RWDEBUG("%s %s ... - Assignment failed - No value on right-hand side", map->lhs->name, fr_tokens[map->op]); return -1; } @@ -570,7 +570,7 @@ static int apply_edits_to_leaf(request_t *request, unlang_frame_state_edit_t *st } if (!box) { - RWDEBUG("%s %s ... - Assignment failed to having no value on right-hand side", map->lhs->name, fr_tokens[map->op]); + RWDEBUG("%s %s ... - Assignment failed - No value on right-hand side", map->lhs->name, fr_tokens[map->op]); return -1; }