diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-02 19:31:01 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-02 19:31:01 +0100 |
commit | f212a85776107ee59eef82262184acaa5e46b942 (patch) | |
tree | 5ee420f9d6c2b469fd6567aaa9a02e995648e890 /bgpd/bgp_vty.h | |
parent | Merge pull request #230 from qlyoung/remove-quagga_clkid (diff) | |
download | frr-f212a85776107ee59eef82262184acaa5e46b942.tar.xz frr-f212a85776107ee59eef82262184acaa5e46b942.zip |
bgp: Fix view/vrf lookup
This commit fixes the view/vrf lookup that got broken.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | bgpd/bgp_vty.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index 13e67d112..33d24d530 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -64,6 +64,6 @@ extern int argv_find_and_parse_safi(struct cmd_token **argv, int argc, int *index, safi_t *safi); extern int -bgp_vty_find_and_parse_afi_safi_vrf (struct vty *vty, struct cmd_token **argv, int argc, int *idx, - afi_t *afi, safi_t *safi, vrf_id_t *vrf); +bgp_vty_find_and_parse_afi_safi_bgp (struct vty *vty, struct cmd_token **argv, int argc, int *idx, + afi_t *afi, safi_t *safi, struct bgp **bgp); #endif /* _QUAGGA_BGP_VTY_H */ |