HEAD
====
+- RAWNAT: IPv6 variants erroneously rejected masks /33-/128
Xtables-addons 1.27 (May 16 2010)
end = strchr(optarg, '/');
if (end != NULL) {
*end++ = '\0';
- if (!xtables_strtoui(end, NULL, &mask, 0, 32))
+ if (!xtables_strtoui(end, NULL, &mask, 0, 128))
xtables_param_act(XTF_BAD_VALUE, "RAWDNAT",
"--to-destination", optarg);
info->mask = mask;
end = strchr(optarg, '/');
if (end != NULL) {
*end++ = '\0';
- if (!xtables_strtoui(end, NULL, &mask, 0, 32))
+ if (!xtables_strtoui(end, NULL, &mask, 0, 128))
xtables_param_act(XTF_BAD_VALUE, "RAWSNAT",
"--to-source", optarg);
info->mask = mask;