contrib/fwd: reset invert flag after running xt parse handler

This commit is contained in:
Jo-Philipp Wich 2009-12-16 22:58:19 +00:00
parent 0f791a7fb6
commit 5abef1380e

View file

@ -229,6 +229,7 @@ void __fwd_xt_parse_match(
}
m->parse(optc, opts, inv, &m->mflags, r->entry, &m->m);
inv = 0;
}
}
@ -303,6 +304,7 @@ void __fwd_xt_parse_target(
}
t->parse(optc, opts, inv, &t->tflags, r->entry, &t->t);
inv = 0;
}
}