mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-10 14:30:47 +00:00
Merge pull request #15461 from vjardin/ifdef_warning
fix warning if ripngd disabled
This commit is contained in:
commit
1d67a6e0bf
@ -608,13 +608,13 @@ void mgmt_vty_init(void)
|
|||||||
* here one by one.
|
* here one by one.
|
||||||
*/
|
*/
|
||||||
zebra_cli_init();
|
zebra_cli_init();
|
||||||
#if HAVE_RIPD
|
#ifdef HAVE_RIPD
|
||||||
rip_cli_init();
|
rip_cli_init();
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_RIPNGD
|
#ifdef HAVE_RIPNGD
|
||||||
ripng_cli_init();
|
ripng_cli_init();
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_STATICD
|
#ifdef HAVE_STATICD
|
||||||
static_vty_init();
|
static_vty_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user