mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +01:00
netconfig: Use CamelCase for IPv6 address settings
This commit is contained in:
parent
e7db478f97
commit
2414a3ae51
@ -290,9 +290,13 @@ static struct netconfig_ifaddr *netconfig_ipv6_get_ifaddr(
|
||||
switch (proto) {
|
||||
case RTPROT_STATIC:
|
||||
ip = l_settings_get_string(netconfig->active_settings, "IPv6",
|
||||
"ip");
|
||||
if (!ip)
|
||||
return NULL;
|
||||
"Address");
|
||||
if (!ip) {
|
||||
ip = l_settings_get_string(netconfig->active_settings,
|
||||
"IPv6", "ip");
|
||||
if (!ip)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
ifaddr = l_new(struct netconfig_ifaddr, 1);
|
||||
ifaddr->ip = ip;
|
||||
|
Loading…
Reference in New Issue
Block a user