Fixes error handling in ASN expressions.
This commit is contained in:
parent
7e4553865f
commit
06ad8f9ebc
@ -1130,10 +1130,7 @@ u32
|
||||
f_eval_asn(struct f_inst *expr)
|
||||
{
|
||||
struct f_val res = interpret(expr);
|
||||
if (res.type != T_INT)
|
||||
cf_error("Can't operate with value of non-integer type in AS path mask constructor");
|
||||
|
||||
return res.val.i;
|
||||
return (res.type == T_INT) ? res.val.i : 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user