diff options
author | Shivani Bhardwaj <shivanib134@gmail.com> | 2016-06-02 18:54:42 +0530 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-06-02 16:50:39 +0200 |
commit | 76c303ac8895b19e53aae37ae2cfa94d8e782554 (patch) | |
tree | 0421ed2aaf9d37422d099644139ae7e6e5f0dbb5 /extensions/libxt_devgroup.c | |
parent | 46c5245244f517341786145048b9276600f10e4b (diff) |
extensions: libxt_devgroup: Fix order of mask and id
The order of mask and id in the translated code is not apt
so fix it.
This patch follows commit 8548dd by Liping Zhang.
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'extensions/libxt_devgroup.c')
-rw-r--r-- | extensions/libxt_devgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libxt_devgroup.c b/extensions/libxt_devgroup.c index a30fff0f..f110ea73 100644 --- a/extensions/libxt_devgroup.c +++ b/extensions/libxt_devgroup.c @@ -158,8 +158,8 @@ print_devgroup_xlate(unsigned int id, uint32_t op, unsigned int mask, const char *name = NULL; if (mask != 0xffffffff) - xt_xlate_add(xl, "and 0x%x %s 0x%x ", id, - op == XT_OP_EQ ? "==" : "!=", mask); + xt_xlate_add(xl, "and 0x%x %s 0x%x ", mask, + op == XT_OP_EQ ? "==" : "!=", id); else { if (numeric == 0) name = xtables_lmap_id2name(devgroups, id); |