diff options
author | Martin Mares <mj@ucw.cz> | 1999-05-31 18:55:35 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-05-31 18:55:35 +0000 |
commit | bb027be1e232ca2207a03a8e001441965cc07801 (patch) | |
tree | b7a569cdde146f6eb6fe02dd73e2ec69f502613a /nest/rt-table.c | |
parent | 75b84c34e3434209517f2ebc8160f39d33e3735e (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index a603c7f1..7aff8b39 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) |