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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to