]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
netfilter: ip6_tables: improve if statements
authorIan Morris <ipm@chirality.org.uk>
Sun, 11 Oct 2015 16:32:19 +0000 (17:32 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 14 Oct 2015 10:29:51 +0000 (12:29 +0200)
Correct whitespace layout of if statements.

No changes detected by objdiff.

Signed-off-by: Ian Morris <ipm@chirality.org.uk>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/ipv6/netfilter/ip6_tables.c

index c57ddd3eabcb3269f18954fc1af3fc960d2bd9ba..99425cf2819b83ceb33d49af65284cb16fd076ec 100644 (file)
@@ -133,7 +133,7 @@ ip6_packet_match(const struct sk_buff *skb,
 /* ... might want to do something with class and flowlabel here ... */
 
        /* look for the desired protocol header */
-       if((ip6info->flags & IP6T_F_PROTO)) {
+       if (ip6info->flags & IP6T_F_PROTO) {
                int protohdr;
                unsigned short _frag_off;
 
@@ -151,9 +151,9 @@ 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;
                }