diff options
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index 4214d07..7883f2e 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -295,7 +295,7 @@ rte_recalculate(rtable *table, net *net, struct proto *p, rte *new, ea_list *tmp { if (old->attrs->proto == p) { - if (rte_same(old, new)) + if (new && rte_same(old, new)) { /* No changes, ignore the new route */ rte_trace_in(D_ROUTES, p, new, "ignored"); |