diff options
author | Stefano Brivio <[email protected]> | 2018-03-19 11:24:58 +0100 |
---|---|---|
committer | David S. Miller <[email protected]> | 2018-03-20 12:43:43 -0400 |
commit | 5f2fb802eee1df0810b47ea251942fe3fd36589a (patch) | |
tree | 79876949b6ae19a9a47c79bad99b5f0a6783a7ec | |
parent | 8220ce6d1b510abfa1cbb3379d05577118ac8c23 (diff) |
ipv6: old_dport should be a __be16 in __ip6_datagram_connect()
Fixes: 2f987a76a977 ("net: ipv6: keep sk status consistent after datagram connect failure")
Signed-off-by: Stefano Brivio <[email protected]>
Acked-by: Paolo Abeni <[email protected]>
Acked-by: Guillaume Nault <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/ipv6/datagram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/datagram.c b/net/ipv6/datagram.c index 8a9ac2d0f5d3..a9f7eca0b6a3 100644 --- a/net/ipv6/datagram.c +++ b/net/ipv6/datagram.c @@ -149,7 +149,7 @@ int __ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, struct in6_addr *daddr, old_daddr; __be32 fl6_flowlabel = 0; __be32 old_fl6_flowlabel; - __be32 old_dport; + __be16 old_dport; int addr_type; int err; |