From 818c8515eed2f11a9e1dc055fa58701803f5dc58 Mon Sep 17 00:00:00 2001 From: Jorge Boncompte Date: Tue, 25 Jul 2017 12:32:20 +0200 Subject: [PATCH] nhrp: initialize interfaces after VRFs Interfaces depend logically of VRF, initialize one after another just in case in the future someone adds something to this functions. Signed-off-by: Jorge Boncompte --- nhrpd/nhrp_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nhrpd/nhrp_main.c b/nhrpd/nhrp_main.c index 7c5d80336c..012d5cd87c 100644 --- a/nhrpd/nhrp_main.c +++ b/nhrpd/nhrp_main.c @@ -128,8 +128,8 @@ int main(int argc, char **argv) /* Library inits. */ master = frr_init(); - nhrp_interface_init(); vrf_init(NULL, NULL, NULL, NULL); + nhrp_interface_init(); resolver_init(); /* Run with elevated capabilities, as for all netlink activity -- 2.39.5