diff options
author | Vipin Kumar <vipin@cumulusnetworks.com> | 2015-10-30 11:05:03 +0100 |
---|---|---|
committer | Vipin Kumar <vipin@cumulusnetworks.com> | 2015-10-30 11:05:03 +0100 |
commit | 4670bdadfea2ab129cd5632720d5f9c7748543a6 (patch) | |
tree | 734f3489791453bb36badc765de7fd632e9ac0cb /babeld | |
parent | zebra_vrf lookup fix in upstream VRF patches (diff) | |
download | frr-4670bdadfea2ab129cd5632720d5f9c7748543a6.tar.xz frr-4670bdadfea2ab129cd5632720d5f9c7748543a6.zip |
Fixing a few compile errors
Ticket:
Reviewed By:
Testing Done:
<DETAILED DESCRIPTION (REPLACE)>
Diffstat (limited to 'babeld')
-rw-r--r-- | babeld/babel_interface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c index ace28127f..c7c152748 100644 --- a/babeld/babel_interface.c +++ b/babeld/babel_interface.c @@ -55,6 +55,7 @@ THE SOFTWARE. #include "neighbour.h" #include "route.h" #include "xroute.h" +#include "vrf.h" #define IS_ENABLE(ifp) (babel_enable_if_lookup(ifp->name) >= 0) @@ -878,7 +879,7 @@ void babel_if_init () { /* initialize interface list */ - if_init(); + vrf_init(); if_add_hook (IF_NEW_HOOK, babel_if_new_hook); if_add_hook (IF_DELETE_HOOK, babel_if_delete_hook); |