diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2020-07-16 23:09:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 23:09:38 +0200 |
commit | 2d1ddebc8bb8572ea3db5677c952158d3d26527b (patch) | |
tree | 34bb663f774d328d789f173b8ce026e010e8254f /zebra/main.c | |
parent | Merge pull request #6751 from donaldsharp/pim_mem_leaks (diff) | |
parent | doc: Update doc for router-id command (diff) | |
download | frr-2d1ddebc8bb8572ea3db5677c952158d3d26527b.tar.xz frr-2d1ddebc8bb8572ea3db5677c952158d3d26527b.zip |
Merge pull request #6706 from donaldsharp/router_id_bullshit
Router id vrf subnode configuration
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/main.c b/zebra/main.c index 748e43b8d..b109c7bcc 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -414,12 +414,12 @@ int main(int argc, char **argv) rib_init(); zebra_if_init(); zebra_debug_init(); - router_id_cmd_init(); /* * Initialize NS( and implicitly the VRF module), and make kernel * routing socket. */ zebra_ns_init((const char *)vrf_default_name_configured); + router_id_cmd_init(); zebra_vty_init(); access_list_init(); prefix_list_init(); |