diff options
Diffstat (limited to 'net/802')
-rw-r--r-- | net/802/psnap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/802/psnap.c b/net/802/psnap.c index 34e42968b47..97c95eec79e 100644 --- a/net/802/psnap.c +++ b/net/802/psnap.c @@ -61,8 +61,7 @@ static int snap_rcv(struct sk_buff *skb, struct net_device *dev, /* Pass the frame on. */ u8 *hdr = skb->data; skb->h.raw += 5; - skb_pull(skb, 5); - skb_postpull_rcsum(skb, hdr, 5); + skb_pull_rcsum(skb, 5); rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev); } else { skb->sk = NULL; |