diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-11-11 17:34:00 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-12 18:23:50 +0100 | 
| commit | 10fe382b134e768f1b4d61c98938034d9cab39b2 (patch) | |
| tree | d455d1158e6eca85aabb87ebefe02c7d63b458bf /pimd/pimd.c | |
| parent | 0064d4736d8e0b9815a9dd6c57ad44de51aed970 (diff) | |
pim6d: add skeleton for IPv6 PIM daemon
This newborn pim6d is essentially an empty husk, but it does build
without warnings or errors and has the build system integration prepared
and working.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pimd.c')
| -rw-r--r-- | pimd/pimd.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index 38e7273945..992bb931bd 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -115,7 +115,6 @@ void pim_router_init(void)  void pim_router_terminate(void)  { -	pim_mlag_terminate();  	XFREE(MTYPE_ROUTER, router);  } @@ -155,6 +154,7 @@ void pim_terminate(void)  	}  	pim_free(); +	pim_mlag_terminate();  	pim_router_terminate();  	frr_fini();  | 
