diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2007-12-18 01:44:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:59:08 -0500 |
commit | e79ec50b9587c175f65f98550d66ad5b96c05dd9 (patch) | |
tree | 9cefac924a8092a124b50fb2767927d3c92717c1 /net/ipv6 | |
parent | 643a2c15a407faf08101a20e1a3461160711899d (diff) |
[NETFILTER]: Parenthesize macro parameters
Parenthesize macro parameters.
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c index bb50d0e66734..4ed16d254b98 100644 --- a/net/ipv6/netfilter/ip6_tables.c +++ b/net/ipv6/netfilter/ip6_tables.c | |||
@@ -102,7 +102,7 @@ ip6_packet_match(const struct sk_buff *skb, | |||
102 | unsigned long ret; | 102 | unsigned long ret; |
103 | const struct ipv6hdr *ipv6 = ipv6_hdr(skb); | 103 | const struct ipv6hdr *ipv6 = ipv6_hdr(skb); |
104 | 104 | ||
105 | #define FWINV(bool,invflg) ((bool) ^ !!(ip6info->invflags & invflg)) | 105 | #define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg))) |
106 | 106 | ||
107 | if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk, | 107 | if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk, |
108 | &ip6info->src), IP6T_INV_SRCIP) | 108 | &ip6info->src), IP6T_INV_SRCIP) |