also, xtables_strtoui() does the range check for us, no need for binary "&". Signed-off-by: Florian Westphal <fw@xxxxxxxxx> --- extensions/libxt_NFQUEUE.c | 20 +++----------------- 1 files changed, 3 insertions(+), 17 deletions(-) diff --git a/extensions/libxt_NFQUEUE.c b/extensions/libxt_NFQUEUE.c index 3ca2239..6939c6f 100644 --- a/extensions/libxt_NFQUEUE.c +++ b/extensions/libxt_NFQUEUE.c @@ -32,12 +32,12 @@ static void parse_num(const char *s, struct xt_NFQ_info *tinfo) { unsigned int num; - + if (!xtables_strtoui(s, NULL, &num, 0, UINT16_MAX)) xtables_error(PARAMETER_PROBLEM, "Invalid queue number `%s'\n", s); - tinfo->queuenum = num & 0xffff; + tinfo->queuenum = num; } static int @@ -78,7 +78,7 @@ static void NFQUEUE_save(const void *ip, const struct xt_entry_target *target) } static struct xtables_target nfqueue_target = { - .family = NFPROTO_IPV4, + .family = NFPROTO_UNSPEC, .name = "NFQUEUE", .version = XTABLES_VERSION, .size = XT_ALIGN(sizeof(struct xt_NFQ_info)), @@ -90,21 +90,7 @@ static struct xtables_target nfqueue_target = { .extra_opts = NFQUEUE_opts }; -static struct xtables_target nfqueue_target6 = { - .family = NFPROTO_IPV6, - .name = "NFQUEUE", - .version = XTABLES_VERSION, - .size = XT_ALIGN(sizeof(struct xt_NFQ_info)), - .userspacesize = XT_ALIGN(sizeof(struct xt_NFQ_info)), - .help = NFQUEUE_help, - .parse = NFQUEUE_parse, - .print = NFQUEUE_print, - .save = NFQUEUE_save, - .extra_opts = NFQUEUE_opts, -}; - void _init(void) { xtables_register_target(&nfqueue_target); - xtables_register_target(&nfqueue_target6); } -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html