Fixes error handling in ASN expressions.

This commit is contained in:
Ondrej Zajicek 2010-10-09 01:00:53 +02:00
parent 7e4553865f
commit 06ad8f9ebc

View File

@ -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;
}
/**