From: Alan T. DeKok Date: Thu, 27 Oct 2022 13:45:30 +0000 (-0400) Subject: ignore the inserted child list, not the parent one X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0806bb103d9ac5840e0113ea89c920ac3474f06d;p=thirdparty%2Ffreeradius-server.git ignore the inserted child list, not the parent one --- diff --git a/src/lib/util/edit.c b/src/lib/util/edit.c index 70b0d30ba16..cfbac2fb510 100644 --- a/src/lib/util/edit.c +++ b/src/lib/util/edit.c @@ -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); }