diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-25 21:24:01 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-26 19:21:20 -0400 |
| commit | 48e8451b8ebeb553bb273dea45fa2856e15e43e7 (patch) | |
| tree | 87ce659942be6f6724a26b9eba19ea75bc91bf49 /pimd/pim_main.c | |
| parent | d3a9c768789d10ba8b947510eb20bdc20a336224 (diff) | |
pimd: Forgot to add the vrf_init call
Forward port of vrf code didn't have the pimd
code. So when it was forward ported we lost
the vrf_init. Now that we have pimd let's
add it back in.
Additionally forward port lost the
additional zclient->zebra_connect call.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_main.c')
| -rw-r--r-- | pimd/pim_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_main.c b/pimd/pim_main.c index 96b784c2c8..c9b11d1075 100644 --- a/pimd/pim_main.c +++ b/pimd/pim_main.c @@ -35,6 +35,7 @@ #include "vty.h" #include "sigevent.h" #include "version.h" +#include "vrf.h" #include "pimd.h" #include "pim_version.h" @@ -197,6 +198,7 @@ int main(int argc, char** argv, char** envp) { cmd_init(1); vty_init(master); memory_init(); + vrf_init (); access_list_init(); pim_init(); |
