Skip to content

Commit

Permalink
Merge pull request FRRouting#15461 from vjardin/ifdef_warning
Browse files Browse the repository at this point in the history
fix warning if ripngd disabled
  • Loading branch information
idryzhov authored Mar 1, 2024
2 parents e3bc6e3 + 717b335 commit 1d67a6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mgmtd/mgmt_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1d67a6e

Please sign in to comment.