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 /staticd/static_zebra.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 'staticd/static_zebra.c')
-rw-r--r-- | staticd/static_zebra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/staticd/static_zebra.c b/staticd/static_zebra.c index bd293edeb..ea17435b2 100644 --- a/staticd/static_zebra.c +++ b/staticd/static_zebra.c @@ -330,8 +330,8 @@ void static_zebra_nht_register(struct static_nexthop *nh, bool reg) DEBUGD(&static_dbg_route, "%s nexthop(%pFX) for %pRN", reg ? "Registering" : "Unregistering", &p, rn); - if (zclient_send_rnh(zclient, cmd, &p, false, false, nh->nh_vrf_id) - == ZCLIENT_SEND_FAILURE) + if (zclient_send_rnh(zclient, cmd, &p, SAFI_UNICAST, false, false, + nh->nh_vrf_id) == ZCLIENT_SEND_FAILURE) zlog_warn("%s: Failure to send nexthop to zebra", __func__); } /* |