The Address-IP6 field combines the address and netmask into one line,
meaning it only makes sense in the netmask field.
Fixes an error rather not dissimilar to the following:
Error: an inet prefix is expected rather than "<foo>/64/128"
Signed-off-by: Jeremy Visser <jeremy@visser.name>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
if (cstpmtu > mtu)
mtu = cstpmtu;
} else if (!strcmp(buf + 7, "Address-IP6")) {
- vpninfo->ip_info.addr6 = new_option->value;
+ vpninfo->ip_info.netmask6 = new_option->value;
} else if (!strcmp(buf + 7, "Address")) {
if (strchr(new_option->value, ':')) {
if (!vpninfo->disable_ipv6)