]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - net/netfilter/nf_conntrack_expect.c
Merge branch 'fixes' of git://git.alsa-project.org/alsa-kernel into for-linus
[mv-sheeva.git] / net / netfilter / nf_conntrack_expect.c
index 2032dfe25ca85a64daab1760fb1ce6b01fc96c7e..fdf5d2a1d9b4cb7f620b6e8521eb5f0193720b9e 100644 (file)
@@ -202,9 +202,9 @@ static inline int expect_clash(const struct nf_conntrack_expect *a,
 static inline int expect_matches(const struct nf_conntrack_expect *a,
                                 const struct nf_conntrack_expect *b)
 {
-       return a->master == b->master && a->class == b->class
-               && nf_ct_tuple_equal(&a->tuple, &b->tuple)
-               && nf_ct_tuple_mask_equal(&a->mask, &b->mask);
+       return a->master == b->master && a->class == b->class &&
+               nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
+               nf_ct_tuple_mask_equal(&a->mask, &b->mask);
 }
 
 /* Generally a bad idea to call this: could have matched already. */