diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2021-10-04 12:21:45 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-03-27 14:57:22 +0200 |
commit | eb3c9d97747bd0346a5ea951960c994dc2871ab3 (patch) | |
tree | 37c26069b60ce9c7a3abd0a560d1f97e9eecaeea /bgpd/bgp_nht.c | |
parent | zebra: `show ip nht mrib` (diff) | |
download | frr-eb3c9d97747bd0346a5ea951960c994dc2871ab3.tar.xz frr-eb3c9d97747bd0346a5ea951960c994dc2871ab3.zip |
*: add SAFI argument to zclient_send_rnh
Just pushing that SAFI_UNICAST up 1 level to the caller.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_nht.c')
-rw-r--r-- | bgpd/bgp_nht.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bgpd/bgp_nht.c b/bgpd/bgp_nht.c index d76873354..d3ebc0e6a 100644 --- a/bgpd/bgp_nht.c +++ b/bgpd/bgp_nht.c @@ -889,8 +889,9 @@ static void sendmsg_zebra_rnh(struct bgp_nexthop_cache *bnc, int command) zserv_command_string(command), &bnc->prefix, bnc->bgp->name_pretty); - ret = zclient_send_rnh(zclient, command, &bnc->prefix, exact_match, - resolve_via_default, bnc->bgp->vrf_id); + ret = zclient_send_rnh(zclient, command, &bnc->prefix, SAFI_UNICAST, + exact_match, resolve_via_default, + bnc->bgp->vrf_id); if (ret == ZCLIENT_SEND_FAILURE) { flog_warn(EC_BGP_ZEBRA_SEND, "sendmsg_nexthop: zclient_send_message() failed"); |