summaryrefslogtreecommitdiff
path: root/proto/bgp/attrs.c
diff options
context:
space:
mode:
authorMaria Matejka <mq@jmq.cz>2020-04-12 21:54:20 +0200
committerMaria Matejka <mq@ucw.cz>2021-10-13 19:09:04 +0200
commitd5a32563df1653952937117133f09143929ff0c2 (patch)
tree215631e21d2db6e97a77d01f51ca8fa8639a8d3f /proto/bgp/attrs.c
parentcee0cd148c9b71bf47d007c850193b5fbf9486c1 (diff)
Preexport: No route modification, no linpool needed
Diffstat (limited to 'proto/bgp/attrs.c')
-rw-r--r--proto/bgp/attrs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/proto/bgp/attrs.c b/proto/bgp/attrs.c
index 24ba00ba..95d1c337 100644
--- a/proto/bgp/attrs.c
+++ b/proto/bgp/attrs.c
@@ -1661,9 +1661,8 @@ bgp_free_prefix(struct bgp_channel *c, struct bgp_prefix *px)
*/
int
-bgp_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED)
+bgp_preexport(struct proto *P, rte *e)
{
- rte *e = *new;
struct proto *SRC = e->attrs->src->proto;
struct bgp_proto *p = (struct bgp_proto *) P;
struct bgp_proto *src = (SRC->proto == &proto_bgp) ? (struct bgp_proto *) SRC : NULL;