mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
network: rename ipv6_proxy_ndp_addresses_configure() -> link_set_ipv6_proxy_ndp_addresses()
This commit is contained in:
@@ -92,7 +92,7 @@ static int ipv6_proxy_ndp_set(Link *link) {
|
||||
}
|
||||
|
||||
/* configure all ipv6 proxy ndp addresses */
|
||||
int ipv6_proxy_ndp_addresses_configure(Link *link) {
|
||||
int link_set_ipv6_proxy_ndp_addresses(Link *link) {
|
||||
struct in6_addr *address;
|
||||
int r;
|
||||
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
typedef struct Link Link;
|
||||
|
||||
int ipv6_proxy_ndp_addresses_configure(Link *link);
|
||||
int link_set_ipv6_proxy_ndp_addresses(Link *link);
|
||||
|
||||
CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_proxy_ndp_address);
|
||||
|
||||
@@ -2896,7 +2896,7 @@ static int link_configure(Link *link) {
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
r = ipv6_proxy_ndp_addresses_configure(link);
|
||||
r = link_set_ipv6_proxy_ndp_addresses(link);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user