get_nhop: eliminate write only variable gateway

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-04-04 20:37:22 -06:00
parent c972f2c065
commit 7f9c3339a4

View File

@ -354,7 +354,7 @@ static int
get_nhop(struct rib_head *rnh, struct rt_addrinfo *info,
struct nhop_priv **pnh_priv)
{
const struct sockaddr *dst, *gateway, *netmask;
const struct sockaddr *dst, *netmask;
struct nhop_priv *nh_priv, *tmp_priv;
int error;
@ -363,7 +363,6 @@ get_nhop(struct rib_head *rnh, struct rt_addrinfo *info,
/* Give the protocols chance to augment the request data */
dst = info->rti_info[RTAX_DST];
netmask = info->rti_info[RTAX_NETMASK];
gateway = info->rti_info[RTAX_GATEWAY];
error = rnh->rnh_preadd(rnh->rib_fibnum, dst, netmask, nh_priv->nh);
if (error != 0) {