mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
Complain when filter does not end in accept nor reject.
This commit is contained in:
parent
b5958826cc
commit
0b1cad8162
@ -736,8 +736,10 @@ f_run(struct filter *filter, struct rte **rte, struct ea_list **tmp_attrs, struc
|
||||
f_pool = tmp_pool;
|
||||
inst = filter->root;
|
||||
res = interpret(inst);
|
||||
if (res.type != T_RETURN)
|
||||
if (res.type != T_RETURN) {
|
||||
log( L_ERR "Filter %s did not return accept nor reject. Make up your mind", filter->name);
|
||||
return F_ERROR;
|
||||
}
|
||||
DBG( "done (%d)\n", res.val.i );
|
||||
return res.val.i;
|
||||
}
|
||||
|
@ -57,7 +57,6 @@ protocol static {
|
||||
bgp_community.empty;
|
||||
print "community = ", bgp_community;
|
||||
print "done";
|
||||
accept;
|
||||
};
|
||||
|
||||
route 0.0.0.0/0 via 195.113.31.113;
|
||||
|
Loading…
Reference in New Issue
Block a user