From: Donald Sharp Date: Fri, 12 Jan 2018 14:51:18 +0000 (-0500) Subject: bgpd: Fix bgp_vty.h to conform to coding standard X-Git-Tag: frr-4.0-dev~4^2~1 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=8ef6371e1f426cd75aec70c8bf3b061f46c40e13;p=matthieu%2Ffrr.git bgpd: Fix bgp_vty.h to conform to coding standard The function declarations were missing some parameter names as is our standard. Signed-off-by: Donald Sharp --- diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index e456f7caed..cbb41f0840 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -44,9 +44,9 @@ struct bgp; "Address Family modifier\n" extern void bgp_vty_init(void); -extern const char *afi_safi_print(afi_t, safi_t); -extern const char *afi_safi_json(afi_t, safi_t); -extern void bgp_config_write_update_delay(struct vty *, struct bgp *); +extern const char *afi_safi_print(afi_t afi, safi_t safi); +extern const char *afi_safi_json(afi_t afi, safi_t safi); +extern void bgp_config_write_update_delay(struct vty *vty, struct bgp *bgp); extern void bgp_config_write_wpkt_quanta(struct vty *vty, struct bgp *bgp); extern void bgp_config_write_rpkt_quanta(struct vty *vty, struct bgp *bgp); extern void bgp_config_write_listen(struct vty *vty, struct bgp *bgp);