diff options
author | Martin Mares <mj@ucw.cz> | 2000-04-12 14:14:47 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-04-12 14:14:47 +0000 |
commit | c8f685cb9d88e447d6057f92bcbb1e0df441ca35 (patch) | |
tree | 29e6111bbb42f68d35c058bb2767857e771cd859 /proto/bgp/attrs.c | |
parent | 0a40e97328180576577da26a5ce8933f616d84f1 (diff) |
Made last Pavel's changes compile.
Diffstat (limited to 'proto/bgp/attrs.c')
-rw-r--r-- | proto/bgp/attrs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/attrs.c b/proto/bgp/attrs.c index 41f06447..dc747707 100644 --- a/proto/bgp/attrs.c +++ b/proto/bgp/attrs.c @@ -315,7 +315,7 @@ bgp_path_prepend(struct linpool *pool, eattr *a, ea_list *old, int as) e->attrs[0].id = EA_CODE(EAP_BGP, BA_AS_PATH); e->attrs[0].flags = BAF_TRANSITIVE; e->attrs[0].type = EAF_TYPE_AS_PATH; - e->attrs[0].u.ptr = path_prepend(pool, olda, as); + e->attrs[0].u.ptr = as_path_prepend(pool, olda, as); return e; } |