tests: Fix vrf_init to have correct call

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2017-05-15 22:00:28 -04:00
parent 97b1a80cbb
commit cc629aef4a
3 changed files with 3 additions and 3 deletions

View File

@ -651,7 +651,7 @@ main (void)
qobj_init ();
master = thread_master_create ();
bgp_master_init (master);
vrf_init ();
vrf_init (NULL, NULL, NULL, NULL);
bgp_option_set (BGP_OPT_NO_LISTEN);
if (fileno (stdout) >= 0)

View File

@ -751,7 +751,7 @@ main (void)
qobj_init ();
master = thread_master_create ();
bgp_master_init (master);
vrf_init ();
vrf_init (NULL, NULL, NULL, NULL);
bgp_option_set (BGP_OPT_NO_LISTEN);
bgp_attr_init ();

View File

@ -380,7 +380,7 @@ global_test_init (void)
master = thread_master_create ();
zclient = zclient_new(master);
bgp_master_init (master);
vrf_init ();
vrf_init (NULL, NULL, NULL, NULL);
bgp_option_set (BGP_OPT_NO_LISTEN);
if (fileno (stdout) >= 0)