Skip to content

Commit

Permalink
netfilter: Fix extra semi-colon in skb_walk_frags() changes.
Browse files Browse the repository at this point in the history
Noticed by Jesper Dangaard Brouer

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jun 10, 2009
1 parent 1506e30 commit 0808dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/netfilter/nf_nat_proto_sctp.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ sctp_manip_pkt(struct sk_buff *skb,
}

crc32 = sctp_start_cksum((u8 *)hdr, skb_headlen(skb) - hdroff);
skb_walk_frags(skb, frag);
skb_walk_frags(skb, frag)
crc32 = sctp_update_cksum((u8 *)frag->data, skb_headlen(frag),
crc32);
crc32 = sctp_end_cksum(crc32);
Expand Down

0 comments on commit 0808dc8

Please sign in to comment.