diff options
author | Maria Matejka <mq@ucw.cz> | 2021-09-14 11:20:16 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-10-13 19:09:05 +0200 |
commit | 0b295d695acab007dd7baab3e9e97c682f716ee8 (patch) | |
tree | ddbb3434947137dbc700c41d4d64c7894cbba2ee /nest/rt-table.c | |
parent | 89ff49f8f0bcd2015f157134728d28ec428e1262 (diff) |
Dropping the unused rte_same hook
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index 9140e938..89e94c55 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -910,7 +910,6 @@ rte_same(rte *x, rte *y) x->attrs == y->attrs && x->pflags == y->pflags && x->src == y->src && - (!x->src->proto->rte_same || x->src->proto->rte_same(x, y)) && rte_is_filtered(x) == rte_is_filtered(y); } |