]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
ignore the inserted child list, not the parent one
authorAlan T. DeKok <aland@freeradius.org>
Thu, 27 Oct 2022 13:45:30 +0000 (09:45 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 27 Oct 2022 15:57:26 +0000 (11:57 -0400)
src/lib/util/edit.c

index 70b0d30ba16d06090d1339cde8c0da410ca0c968..cfbac2fb510d2b7c2d0cdfdd05d89e4049a912e8 100644 (file)
@@ -481,7 +481,7 @@ static int edit_record(fr_edit_list_t *el, fr_edit_op_t op, fr_pair_t *vp, fr_pa
                i = talloc_zero(el, fr_edit_ignore_t);
                if (!i) return 0;
 
-               i->list = list;
+               i->list = &vp->vp_group;
                fr_dlist_insert_tail(&el->ignore, i);
        }