diff options
author | Martin Mares <mj@ucw.cz> | 1999-05-31 20:55:35 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-05-31 20:55:35 +0200 |
commit | bb027be1e232ca2207a03a8e001441965cc07801 (patch) | |
tree | b7a569cdde146f6eb6fe02dd73e2ec69f502613a /proto/rip/rip.c | |
parent | 75b84c34e3434209517f2ebc8160f39d33e3735e (diff) | |
download | bird-bb027be1e232ca2207a03a8e001441965cc07801.tar bird-bb027be1e232ca2207a03a8e001441965cc07801.zip |
Added extra argument to rt_update hook which contains a pointer to the
temporary attribute list.
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 8d81486..446f310 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -528,7 +528,7 @@ rip_if_notify(struct proto *p, unsigned c, struct iface *iface) } static void -rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte *old) +rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte *old, struct ea_list *tmpa) { CHK_MAGIC; |