diff options
-rw-r--r-- | interface-ip.c | 2 | ||||
-rw-r--r-- | system-linux.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/interface-ip.c b/interface-ip.c index 612fd5f..51612fa 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -89,8 +89,6 @@ interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6) if ((cur = tb[ROUTE_METRIC]) != NULL) route->metric = blobmsg_get_u32(cur); - else - route->metric = -1; if ((cur = tb[ROUTE_MTU]) != NULL) route->mtu = blobmsg_get_u32(cur); diff --git a/system-linux.c b/system-linux.c index 6345b7f..4a8c03d 100644 --- a/system-linux.c +++ b/system-linux.c @@ -888,7 +888,7 @@ static int system_rt(struct device *dev, struct device_route *route, int cmd) if (route->mask) nla_put(msg, RTA_DST, alen, &route->addr); - if (route->metric >= 0) + if (route->metric > 0) nla_put_u32(msg, RTA_PRIORITY, route->metric); if (have_gw) |