if (info->flags & IPRANGE_SRC) {
if (info->flags & IPRANGE_SRC_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip saddr");
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip saddr");
print_iprange_xlate(&info->src, xl);
}
if (info->flags & IPRANGE_DST) {
if (info->flags & IPRANGE_DST_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip daddr");
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip daddr");
print_iprange_xlate(&info->dst, xl);
}
if (info->flags & IPRANGE_SRC) {
if (info->flags & IPRANGE_SRC_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip saddr %s",
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip saddr %s",
xtables_ipaddr_to_numeric(&info->src_min.in));
xt_xlate_add(xl, "-%s ",
xtables_ipaddr_to_numeric(&info->src_max.in));
}
if (info->flags & IPRANGE_DST) {
if (info->flags & IPRANGE_DST_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip daddr %s",
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip daddr %s",
xtables_ipaddr_to_numeric(&info->dst_min.in));
xt_xlate_add(xl, "-%s ",
xtables_ipaddr_to_numeric(&info->dst_max.in));
if (info->flags & IPRANGE_SRC) {
if (info->flags & IPRANGE_SRC_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip saddr %s",
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip saddr %s",
xtables_ip6addr_to_numeric(&info->src_min.in6));
xt_xlate_add(xl, "-%s ",
xtables_ip6addr_to_numeric(&info->src_max.in6));
}
if (info->flags & IPRANGE_DST) {
if (info->flags & IPRANGE_DST_INV)
- xt_xlate_add(xl, " !=");
- xt_xlate_add(xl, " ip daddr %s",
+ xt_xlate_add(xl, "!= ");
+ xt_xlate_add(xl, "ip daddr %s",
xtables_ip6addr_to_numeric(&info->dst_min.in6));
xt_xlate_add(xl, "-%s ",
xtables_ip6addr_to_numeric(&info->dst_max.in6));