From: Simon Horman Date: Thu, 13 Jun 2013 07:04:33 +0000 (+0900) Subject: sctp: Correct byte order of access to skb->{network, transport}_header X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2c928e0e8dd6b3661870bfacb53d1c330a1a7411;p=linux-beck.git sctp: Correct byte order of access to skb->{network, transport}_header Corrects an byte order conflict introduced by 158874cac61245b84e939c92c53db7000122b7b0 ("sctp: Correct access to skb->{network, transport}_header"). The values in question are host byte order. Signed-off-by: Simon Horman Signed-off-by: David S. Miller --- diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index 8ee553b499ce..fffc7b62a9a8 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c @@ -153,7 +153,7 @@ SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, struct sctp_association *asoc; struct sctp_transport *transport; struct ipv6_pinfo *np; - __be16 saveip, savesctp; + __u16 saveip, savesctp; int err; struct net *net = dev_net(skb->dev);