mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
Revert "Fixes behavior of defined() on bgp_community attribute."
This reverts commit 74e9331fe0
.
This commit is contained in:
parent
646b24d932
commit
0277cc0baf
@ -621,6 +621,12 @@ interpret(struct f_inst *what)
|
|||||||
e = ea_find( (*f_rte)->attrs->eattrs, what->a2.i );
|
e = ea_find( (*f_rte)->attrs->eattrs, what->a2.i );
|
||||||
|
|
||||||
if (!e) {
|
if (!e) {
|
||||||
|
/* A special case: undefined int_set looks like empty int_set */
|
||||||
|
if ((what->aux & EAF_TYPE_MASK) == EAF_TYPE_INT_SET) {
|
||||||
|
res.type = T_CLIST;
|
||||||
|
res.val.ad = adata_empty(f_pool);
|
||||||
|
break;
|
||||||
|
}
|
||||||
/* Undefined value */
|
/* Undefined value */
|
||||||
res.type = T_VOID;
|
res.type = T_VOID;
|
||||||
break;
|
break;
|
||||||
@ -836,11 +842,7 @@ interpret(struct f_inst *what)
|
|||||||
|
|
||||||
case P('C','a'): /* Community list add or delete */
|
case P('C','a'): /* Community list add or delete */
|
||||||
TWOARGS;
|
TWOARGS;
|
||||||
|
if (v1.type != T_CLIST)
|
||||||
/* Replace undefined value with empty community list */
|
|
||||||
if (v1.type == T_VOID)
|
|
||||||
v1.val.ad = adata_empty(f_pool);
|
|
||||||
else if (v1.type != T_CLIST)
|
|
||||||
runtime("Can't add/delete to non-clist");
|
runtime("Can't add/delete to non-clist");
|
||||||
|
|
||||||
if ((v2.type == T_PAIR) || (v2.type == T_QUAD))
|
if ((v2.type == T_PAIR) || (v2.type == T_QUAD))
|
||||||
|
Loading…
Reference in New Issue
Block a user