]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Grammar
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 15 Jun 2023 15:48:22 +0000 (11:48 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 21 Jun 2023 20:25:49 +0000 (16:25 -0400)
src/lib/unlang/edit.c

index 2c672eb32e0368103b225ce5fc6485b7d1a7c125..2e226ec3db75ca17f78d4bbacbf8ab2150a058a0 100644 (file)
@@ -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;
        }