1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Aggregator: Fixed bugs in filter usage

This commit is contained in:
Maria Matejka
2023-11-01 10:57:43 +01:00
parent d16126dacd
commit b958228953
3 changed files with 28 additions and 3 deletions

View File

@@ -1210,7 +1210,7 @@ rte_same(rte *x, rte *y)
{
/* rte.flags / rte.pflags are not checked, as they are internal to rtable */
return
(
(x == y) || (
(x->attrs == y->attrs) ||
((!x->attrs->cached || !y->attrs->cached) && rta_same(x->attrs, y->attrs))
) &&