diff options
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/ChangeLog | 7 | ||||
-rw-r--r-- | ripd/ripd.c | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ripd/ChangeLog b/ripd/ChangeLog index 848efee4..20803338 100644 --- a/ripd/ChangeLog +++ b/ripd/ChangeLog @@ -1,3 +1,10 @@ +2004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com> + + * ripd.c: (rip_distribute_update_all) distribute list hook + function pointer prototype requires struct prefix_list * arg. + (rip_distribute_update_all_wrapper) update to pass required arg, + NULL. + 2004-06-06 Paul Jakma <paul.jakma@sun.com> * ripd.h: Add define for the RIPv2 Authentication Data family diff --git a/ripd/ripd.c b/ripd/ripd.c index 69148227..8b76073c 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -3745,8 +3745,9 @@ rip_distribute_update_interface (struct interface *ifp) } /* Update all interface's distribute list. */ +/* ARGSUSED */ void -rip_distribute_update_all () +rip_distribute_update_all (struct prefix_list *notused) { struct interface *ifp; listnode node; @@ -3761,7 +3762,7 @@ rip_distribute_update_all () void rip_distribute_update_all_wrapper(struct access_list *notused) { - rip_distribute_update_all(); + rip_distribute_update_all(NULL); } /* Delete all added rip route. */ |