Skip to content

Commit

Permalink
Merge pull request #17704 from anlancs/fix/mgmtd-compile-error
Browse files Browse the repository at this point in the history
mgmtd: fix compile error
  • Loading branch information
ton31337 authored Dec 21, 2024
2 parents f7fcc44 + b5b8c9d commit f3b5583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mgmtd/mgmt_be_adapter.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static const char *const zebra_oper_xpaths[] = {
NULL,
};

#if HAVE_RIPD
#ifdef HAVE_RIPD
static const char *const ripd_config_xpaths[] = {
"/frr-filter:lib",
"/frr-interface:lib/interface",
Expand All @@ -104,7 +104,7 @@ static const char *const ripd_rpc_xpaths[] = {
};
#endif

#if HAVE_RIPNGD
#ifdef HAVE_RIPNGD
static const char *const ripngd_config_xpaths[] = {
"/frr-filter:lib",
"/frr-interface:lib/interface",
Expand All @@ -123,7 +123,7 @@ static const char *const ripngd_rpc_xpaths[] = {
};
#endif

#if HAVE_STATICD
#ifdef HAVE_STATICD
static const char *const staticd_config_xpaths[] = {
"/frr-vrf:lib",
"/frr-interface:lib",
Expand Down

0 comments on commit f3b5583

Please sign in to comment.