summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-05-31 20:55:35 +0200
committerMartin Mares <mj@ucw.cz>1999-05-31 20:55:35 +0200
commitbb027be1e232ca2207a03a8e001441965cc07801 (patch)
treeb7a569cdde146f6eb6fe02dd73e2ec69f502613a /nest/rt-table.c
parent75b84c34e3434209517f2ebc8160f39d33e3735e (diff)
downloadbird-bb027be1e232ca2207a03a8e001441965cc07801.tar
bird-bb027be1e232ca2207a03a8e001441965cc07801.zip
Added extra argument to rt_update hook which contains a pointer to the
temporary attribute list.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index a603c7f..7aff8b3 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -127,7 +127,7 @@ do_rte_announce(struct announce_hook *a, net *net, rte *new, rte *old, ea_list *
}
}
if (new || old)
- p->rt_notify(p, net, new, old);
+ p->rt_notify(p, net, new, old, tmpa);
if (new && new != new0) /* Discard temporary rte's */
rte_free(new);
if (old && old != old0)