diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2018-02-05 16:30:21 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2018-02-27 11:11:24 +0100 |
commit | 736d41ad74f1135256ece64873fb261164ed03e0 (patch) | |
tree | 4023c0fdffab276ae7435be815e359abb7104d96 /zebra/zebra_vrf.c | |
parent | lib: split logicalrouter and vrf netns feature (diff) | |
download | frr-736d41ad74f1135256ece64873fb261164ed03e0.tar.xz frr-736d41ad74f1135256ece64873fb261164ed03e0.zip |
zebra: adapt the vrf and logical router initialisation
The zebra daemon introduces the logical router initialisation.
Because right now, the usage of logical router and vrf NETNS is
exclusive, then the logical router and VRF are initialised accordingly.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'zebra/zebra_vrf.c')
-rw-r--r-- | zebra/zebra_vrf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_vrf.c b/zebra/zebra_vrf.c index 874a9c74e..bb15fd04f 100644 --- a/zebra/zebra_vrf.c +++ b/zebra/zebra_vrf.c @@ -581,8 +581,8 @@ static int vrf_config_write(struct vty *vty) /* Zebra VRF initialization. */ void zebra_vrf_init(void) { - vrf_init(zebra_vrf_new, zebra_vrf_enable, zebra_vrf_disable, - zebra_vrf_delete); + vrf_init(zebra_vrf_new, zebra_vrf_enable, + zebra_vrf_disable, zebra_vrf_delete); vrf_cmd_init(vrf_config_write); } |