From 02ff83c52592427623db0d8367ca9b3395fa321f Mon Sep 17 00:00:00 2001 From: paul Date: Fri, 11 Jun 2004 11:27:03 +0000 Subject: 2004-06-11 Sowmini Varadhan * filter.c: (access_list_remark_cmd) buffer_putstr doesnt need cast to u_char. (ipv6_access_list_remark_cmd) ditto. if.c: ditto * network.c: (readn/writen) pointer arg should be type u_char. * plist.c: needs to include stream.h, not declare stream functions internally. (various) Add static qualifier to internal functions. (prefix_list_type_str) extraneous breaks in switch statement. (ip_prefix_list_description_cmd) buffer_putstr doesnt need cast * stream.h: depends on plist.h and export stream_put_prefix * vty.c: (vty_) should use unsigned char, telnet options are 0 -> 255. * zclient.c: various u_char<->char type cleanups. * zebra.h: Having to define CMSG_* can apply to more than just BSDI_NRL. * 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. --- ripd/ChangeLog | 7 +++++++ ripd/ripd.c | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'ripd') 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 + + * 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 * 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. */ -- cgit v1.2.1