summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@nuts.ninka.net>2003-05-27 12:31:06 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2003-05-27 12:31:06 -0700
commit5680d22782a89c665848605c561d1e91ac2b30bc (patch)
tree0bd634e28ee34e8e90c5f1c83d71241fc39656eb
parent9aaf56608b043a9595cb5205b14c2dfbda581128 (diff)
[IPV6]: Fix typo in defragmentation changes.
-rw-r--r--net/ipv6/reassembly.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 9ebe5c7cfd84..3ab900bfaa61 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -599,7 +599,7 @@ static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff **skb_in,
payload_len = (head->data - head->nh.raw) - sizeof(struct ipv6hdr) + fq->len;
nhoff = head->h.raw - head->nh.raw;
- if (payload_len > 65535 + 8) {
+ if (payload_len > 65535 + 8)
goto out_oversize;
/* Head of list must not be cloned. */