network: make link_request_set_nexthop() static

This commit is contained in:
Yu Watanabe 2020-07-11 00:36:38 +09:00
parent a4623f84ed
commit eb01a2dfb1
2 changed files with 1 additions and 2 deletions

View File

@ -972,7 +972,7 @@ static int nexthop_handler(sd_netlink *rtnl, sd_netlink_message *m, Link *link)
return 1;
}
int link_request_set_nexthop(Link *link) {
static int link_request_set_nexthop(Link *link) {
NextHop *nh;
int r;

View File

@ -224,7 +224,6 @@ uint32_t link_get_vrf_table(Link *link);
uint32_t link_get_dhcp_route_table(Link *link);
uint32_t link_get_ipv6_accept_ra_route_table(Link *link);
int link_request_set_routes(Link *link);
int link_request_set_nexthop(Link *link);
int link_reconfigure(Link *link, bool force);