diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2017-04-26 12:30:22 +0200 |
---|---|---|
committer | Jan Moskyto Matejka <mq@ucw.cz> | 2017-04-26 12:30:22 +0200 |
commit | 69fddac0525b1b0c940d778a161ed3a0a742ed6f (patch) | |
tree | 3fd1d68a1dc84f6d14bd6705fe3505be1483d4ee /filter | |
parent | 93a3661c15c612e1de807524649482765b2c2702 (diff) | |
parent | b29499996bbc1612a63a7e715bb53a8abf0940e3 (diff) |
Merge branch 'int-new' of gitlab.labs.nic.cz:labs/bird into int-new
Diffstat (limited to 'filter')
-rw-r--r-- | filter/filter.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/filter/filter.c b/filter/filter.c index 9f6c2cdd..7dcf22ed 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -1693,15 +1693,13 @@ i_same(struct f_inst *f1, struct f_inst *f2) case P('a','f'): case P('a','l'): case P('a','L'): ONEARG; break; -#if 0 case P('R','C'): TWOARGS; - /* Does not really make sense - ROA check resuls may change anyway */ + /* Does not really make sense - ROA check results may change anyway */ if (strcmp(((struct f_inst_roa_check *) f1)->rtc->name, ((struct f_inst_roa_check *) f2)->rtc->name)) return 0; break; -#endif default: bug( "Unknown instruction %d in same (%c)", f1->code, f1->code & 0xff); } |