diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-06-20 20:49:38 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 22:02:05 +0200 |
commit | fc5031bc33bf52d03405f0ef2291bbc14b7769c5 (patch) | |
tree | 72c66a1a5d2296068380413b355ca24f269b83fe /babeld/babel_main.c | |
parent | *: stop double initialization of ferr (diff) | |
download | frr-fc5031bc33bf52d03405f0ef2291bbc14b7769c5.tar.xz frr-fc5031bc33bf52d03405f0ef2291bbc14b7769c5.zip |
babeld: fix erroneous lib init
Babel was screwing up lib initialization causing double inits of many
things.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | babeld/babel_main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/babeld/babel_main.c b/babeld/babel_main.c index 002517449..554244a28 100644 --- a/babeld/babel_main.c +++ b/babeld/babel_main.c @@ -184,9 +184,6 @@ main(int argc, char **argv) /* Library inits. */ babel_error_init(); - zprivs_init (&babeld_privs); - cmd_init (1); - vty_init (master); resend_delay = BABEL_DEFAULT_RESEND_DELAY; change_smoothing_half_life(BABEL_DEFAULT_SMOOTHING_HALF_LIFE); |