Fixes:
- xt_RAWNAT: ensure correct operation in the presence of IPv4 options
- xt_geoip: do not throw a warnings when country database is size 0
+- xt_quota2: print "!" at the correct position during iptables-save
v2.2 (2013-03-31)
{
const struct xt_quota_mtinfo2 *q = (void *)match->data;
- if (q->flags & XT_QUOTA_INVERT)
- printf(" !");
if (q->flags & XT_QUOTA_GROW)
printf(" --grow ");
if (q->flags & XT_QUOTA_NO_CHANGE)
printf(" --packets ");
if (*q->name != '\0')
printf(" --name %s ", q->name);
+ if (q->flags & XT_QUOTA_INVERT)
+ printf(" !");
printf(" --quota %llu ", (unsigned long long)q->quota);
}