summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2017-04-06 17:16:49 +0200
committerOndrej Zajicek (work) <santiago@crfreenet.org>2017-04-18 13:56:51 +0200
commit6f535924ebbb5a08d96c4a8d0cf0984b130a0995 (patch)
tree1e39127fa15c027903bab1b2ee24990a67f7544c /filter
parent4278abfe272de64556c4d6df19efc0c853527851 (diff)
Filter: Fix reconfiguration of roa_check()
Diffstat (limited to 'filter')
-rw-r--r--filter/filter.c4
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);
}