]> err.no Git - linux-2.6/blobdiff - net/netfilter/xt_NOTRACK.c
[SK_BUFF]: Introduce skb_mac_header()
[linux-2.6] / net / netfilter / xt_NOTRACK.c
index cab881d4424ca59d01f0fd9428527fd37ea7f7c4..b874a2008b2b9371a1a647f78f22b5e8195a9eea 100644 (file)
@@ -16,15 +16,14 @@ target(struct sk_buff **pskb,
        const struct net_device *out,
        unsigned int hooknum,
        const struct xt_target *target,
-       const void *targinfo,
-       void *userinfo)
+       const void *targinfo)
 {
        /* Previously seen (loopback)? Ignore. */
        if ((*pskb)->nfct != NULL)
                return XT_CONTINUE;
 
-       /* Attach fake conntrack entry. 
-          If there is a real ct entry correspondig to this packet, 
+       /* Attach fake conntrack entry.
+          If there is a real ct entry correspondig to this packet,
           it'll hang aroun till timing out. We don't deal with it
           for performance reasons. JK */
        nf_ct_untrack(*pskb);