diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-09-24 21:51:18 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-09-27 18:38:08 +0200 |
commit | ed6cec97d7f2c5abbc5a2ef2f087a614c54ddcb1 (patch) | |
tree | e5804304819a41268360ca56509a8711be3ee09f /sharpd | |
parent | zebra: Being able to use the default route is a boolean not an int (diff) | |
download | frr-ed6cec97d7f2c5abbc5a2ef2f087a614c54ddcb1.tar.xz frr-ed6cec97d7f2c5abbc5a2ef2f087a614c54ddcb1.zip |
*: Add resolve via default flag
Diffstat (limited to 'sharpd')
-rw-r--r-- | sharpd/sharp_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sharpd/sharp_zebra.c b/sharpd/sharp_zebra.c index 2575475dd..48c9e8ced 100644 --- a/sharpd/sharp_zebra.c +++ b/sharpd/sharp_zebra.c @@ -638,7 +638,7 @@ void sharp_zebra_nexthop_watch(struct prefix *p, vrf_id_t vrf_id, bool import, command = ZEBRA_IMPORT_ROUTE_UNREGISTER; } - if (zclient_send_rnh(zclient, command, p, connected, vrf_id) + if (zclient_send_rnh(zclient, command, p, connected, false, vrf_id) == ZCLIENT_SEND_FAILURE) zlog_warn("%s: Failure to send nexthop to zebra", __func__); } |