1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-19 10:03:39 +03:00

sd-dhcp6-client: fix typo ia_pd -> ia_na

Fortunately, currently both ia_pd and ia_na in sd_dhcp6_client are
equivalent now.
This commit is contained in:
Yu Watanabe 2022-02-04 10:15:49 +09:00
parent 5e4d135c60
commit 43b7a412b1

View File

@ -1153,7 +1153,7 @@ int client_parse_message(
break;
}
r = dhcp6_option_parse_ia(client, client->ia_pd.ia_na.id, optcode, optlen, optval, &ia);
r = dhcp6_option_parse_ia(client, client->ia_na.ia_na.id, optcode, optlen, optval, &ia);
if (r == -ENOMEM)
return r;
if (r < 0)