diff options
Diffstat (limited to 'mgmtd/mgmt_be_adapter.c')
| -rw-r--r-- | mgmtd/mgmt_be_adapter.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/mgmtd/mgmt_be_adapter.c b/mgmtd/mgmt_be_adapter.c index d830120af1..fadeafa408 100644 --- a/mgmtd/mgmt_be_adapter.c +++ b/mgmtd/mgmt_be_adapter.c @@ -117,6 +117,10 @@ static const char *const ripngd_oper_xpaths[] = {  	"/frr-ripngd:ripngd",  	NULL,  }; +static const char *const ripngd_rpc_xpaths[] = { +	"/frr-ripngd", +	NULL, +};  #endif  #if HAVE_STATICD @@ -155,6 +159,9 @@ static const char *const *be_client_rpc_xpaths[MGMTD_BE_CLIENT_ID_MAX] = {  #ifdef HAVE_RIPD  	[MGMTD_BE_CLIENT_ID_RIPD] = ripd_rpc_xpaths,  #endif +#ifdef HAVE_RIPNGD +	[MGMTD_BE_CLIENT_ID_RIPNGD] = ripngd_rpc_xpaths, +#endif  };  /*  | 
