diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-12 14:02:04 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-12 14:02:04 +0000 |
commit | ac7a2145ccd5cfc54788b0218cc253e3b1721b76 (patch) | |
tree | 028014e8aa185e86c5b5c242aed0623830d1c2bf /proto/bgp/config.Y | |
parent | 12d5677aa3e6217edc7d5508ac3dbbf87edc8624 (diff) |
f_new_dynamic_attr gets third argument, type as filters know it.
Diffstat (limited to 'proto/bgp/config.Y')
-rw-r--r-- | proto/bgp/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/config.Y b/proto/bgp/config.Y index ad9cf8ca..635c4f64 100644 --- a/proto/bgp/config.Y +++ b/proto/bgp/config.Y @@ -50,7 +50,7 @@ bgp_proto: | bgp_proto NEXT HOP SELF ';' { BGP_CFG->next_hop_self = 1; } ; -CF_ADDTO(dynamic_attr, BGP_PATH { $$ = f_new_dynamic_attr(EAF_TYPE_AS_PATH, EA_CODE(EAP_BGP, BA_AS_PATH)); }) +CF_ADDTO(dynamic_attr, BGP_PATH { $$ = f_new_dynamic_attr(EAF_TYPE_AS_PATH, T_PATH, EA_CODE(EAP_BGP, BA_AS_PATH)); }) CF_CODE |