From 684c25d98fbfd7cc9275f401d8d451135615af8d Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 25 Apr 2000 21:21:52 +0000 Subject: [PATCH] When sending BGP attributes, re-create the flags, so that attributes added by filters which get the flags wrong are fixed automagically. --- proto/bgp/attrs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/bgp/attrs.c b/proto/bgp/attrs.c index 8bf730bc..c229239c 100644 --- a/proto/bgp/attrs.c +++ b/proto/bgp/attrs.c @@ -372,6 +372,8 @@ bgp_get_bucket(struct bgp_proto *p, ea_list *old, ea_list *tmp, int originate) { if (!bgp_attr_table[code].allow_in_ebgp && !p->is_internal) continue; + /* The flags might have been zero if the attr was added by filters */ + a->flags = (a->flags & BAF_PARTIAL) | bgp_attr_table[code].expected_flags; } if (code < 32) seen |= 1 << code;