]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/netfilter/xt_mark.c
[ARM] 4411/1: KS8695: Another serial driver fix
[linux-2.6-omap-h63xx.git] / net / netfilter / xt_mark.c
index 934dddfbcd23dd852daa8ed1476d8f0585078ace..39911dddb01103e95389c13ba9d328117702e06b 100644 (file)
@@ -31,15 +31,15 @@ match(const struct sk_buff *skb,
 {
        const struct xt_mark_info *info = matchinfo;
 
-       return ((skb->nfmark & info->mask) == info->mark) ^ info->invert;
+       return ((skb->mark & info->mask) == info->mark) ^ info->invert;
 }
 
 static int
 checkentry(const char *tablename,
-           const void *entry,
+          const void *entry,
           const struct xt_match *match,
-           void *matchinfo,
-           unsigned int hook_mask)
+          void *matchinfo,
+          unsigned int hook_mask)
 {
        const struct xt_mark_info *minfo = matchinfo;