[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1429977542.32250.12.camel@perches.com>
Date: Sat, 25 Apr 2015 08:59:02 -0700
From: Joe Perches <joe@...ches.com>
To: Ian Morris <ipm@...rality.org.uk>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net-next 3/6] ipv6: netfilter: remove unnecessary braces
On Sat, 2015-04-25 at 10:26 +0100, Ian Morris wrote:
> Remove braces from a few if statements where not required.
trivia:
> diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
[]
> @@ -151,9 +151,8 @@ ip6_packet_match(const struct sk_buff *skb,
> ip6info->proto);
>
> if (ip6info->proto == protohdr) {
> - if (ip6info->invflags & IP6T_INV_PROTO) {
> + if (ip6info->invflags & IP6T_INV_PROTO)
> return false;
> - }
> return true;
maybe
return (!(ip6info->invflags & IP6T_INV_PROTO));
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists