mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 14:29: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.
|
||||
*/
|
||||
zebra_cli_init();
|
||||
#if HAVE_RIPD
|
||||
#ifdef HAVE_RIPD
|
||||
rip_cli_init();
|
||||
#endif
|
||||
#if HAVE_RIPNGD
|
||||
#ifdef HAVE_RIPNGD
|
||||
ripng_cli_init();
|
||||
#endif
|
||||
#if HAVE_STATICD
|
||||
#ifdef HAVE_STATICD
|
||||
static_vty_init();
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user