diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-01-12 15:51:18 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-03 17:33:13 +0100 |
commit | 8ef6371e1f426cd75aec70c8bf3b061f46c40e13 (patch) | |
tree | 82e0404b77bd45f45b8f7ab9b0058ca21214cde7 /bgpd/bgp_vty.h | |
parent | bgpd: bgp_afi_node_get is listed 2 times in bgp_route.h (diff) | |
download | frr-8ef6371e1f426cd75aec70c8bf3b061f46c40e13.tar.xz frr-8ef6371e1f426cd75aec70c8bf3b061f46c40e13.zip |
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 <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_vty.h')
-rw-r--r-- | bgpd/bgp_vty.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index e456f7cae..cbb41f084 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); |