diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-12 16:02:04 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-12 16:02:04 +0200 |
commit | ac7a2145ccd5cfc54788b0218cc253e3b1721b76 (patch) | |
tree | 028014e8aa185e86c5b5c242aed0623830d1c2bf /proto/bgp | |
parent | 12d5677aa3e6217edc7d5508ac3dbbf87edc8624 (diff) | |
download | bird-ac7a2145ccd5cfc54788b0218cc253e3b1721b76.tar bird-ac7a2145ccd5cfc54788b0218cc253e3b1721b76.zip |
f_new_dynamic_attr gets third argument, type as filters know it.
Diffstat (limited to 'proto/bgp')
-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 ad9cf8c..635c4f6 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 |