From: Jan Engelhardt Date: Sun, 21 Aug 2011 10:39:04 +0000 (+0200) Subject: libxt_policy: remove superfluous inversion X-Git-Tag: v1.4.12.1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03deef5241330db418652c42af4d517527743f22;p=thirdparty%2Fiptables.git libxt_policy: remove superfluous inversion --dir cannot be inverted. Signed-off-by: Jan Engelhardt --- diff --git a/extensions/libxt_policy.c b/extensions/libxt_policy.c index 97722d6c..54ec2294 100644 --- a/extensions/libxt_policy.c +++ b/extensions/libxt_policy.c @@ -40,8 +40,7 @@ static void policy_help(void) } static const struct xt_option_entry policy_opts[] = { - {.name = "dir", .id = O_DIRECTION, .type = XTTYPE_STRING, - .flags = XTOPT_INVERT}, + {.name = "dir", .id = O_DIRECTION, .type = XTTYPE_STRING}, {.name = "pol", .id = O_POLICY, .type = XTTYPE_STRING}, {.name = "strict", .id = O_STRICT, .type = XTTYPE_NONE}, {.name = "reqid", .id = O_REQID, .type = XTTYPE_UINT32,