From: Nick Porter Date: Mon, 24 Nov 2025 09:47:29 +0000 (+0000) Subject: Remove & from comments X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d0f1c813cfdc6cb8932e9f3a03a319d98005baa;p=thirdparty%2Ffreeradius-server.git Remove & from comments --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index a085fb58f70..a23e456a146 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -682,9 +682,9 @@ static unlang_t *compile_edit_section(unlang_t *parent, unlang_compile_ctx_t *un map_t *child; /* - * Don't update namespace for &reply += { ... } + * Don't update namespace for reply += { ... } * - * Do update namespace for &reply.foo += { ... } + * Do update namespace for reply.foo += { ... } * * Don't update if the LHS is an internal group. */ @@ -728,7 +728,7 @@ static unlang_t *compile_edit_section(unlang_t *parent, unlang_compile_ctx_t *un } } else { /* - * &foo := { a, b, c } + * foo := { a, b, c } */ if (map_list_afrom_cs(map, &map->child, cs, &t_rules, NULL, NULL, 256) < 0) { goto fail;