]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - net/netfilter/xt_tcpmss.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[mv-sheeva.git] / net / netfilter / xt_tcpmss.c
index a3682fe2f1926268cd7cb5269c27d149c23bb108..80571d0749f7ad5375505bc8f3ec89ab1bfaea6e 100644 (file)
@@ -64,9 +64,9 @@ match(const struct sk_buff *skb,
                        u_int16_t mssval;
 
                        mssval = (op[i+2] << 8) | op[i+3];
-                       
+
                        return (mssval >= info->mss_min &&
-                               mssval <= info->mss_max) ^ info->invert;
+                               mssval <= info->mss_max) ^ info->invert;
                }
                if (op[i] < 2)
                        i++;