mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 08:24:30 +00:00
tests: Fix vrf_init to have correct call
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
97b1a80cbb
commit
cc629aef4a
@ -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)
|
||||
|
@ -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 ();
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user