diff options
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r-- | nest/rt-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index e6676252..5f386a76 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -62,7 +62,7 @@ rta_same(rta *x, rta *y) ipa_equal(x->from, y->from) && x->iface == y->iface && ea_same(x->attrs, y->attrs) && - x->proto->rta_same(x, y)); + (!x->proto->rta_same || x->proto->rta_same(x, y))); } static inline ea_list * |