Commit 68484872 authored by Yasuyuki Kozakai's avatar Yasuyuki Kozakai Committed by David S. Miller

[IPV6]: Fix ntohs() --> htons() typo in reassembly.c

Signed-off-by: default avatarYasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent af18a4b8
...@@ -665,7 +665,7 @@ static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff **skb_in, ...@@ -665,7 +665,7 @@ static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff **skb_in,
head->next = NULL; head->next = NULL;
head->dev = dev; head->dev = dev;
head->stamp = fq->stamp; head->stamp = fq->stamp;
head->nh.ipv6h->payload_len = ntohs(payload_len); head->nh.ipv6h->payload_len = htons(payload_len);
*skb_in = head; *skb_in = head;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment