Commit b23e3536 authored by Al Viro's avatar Al Viro Committed by David S. Miller

[IPV6]: Dumb typo in generic csum_ipv6_magic()

... duh
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 24123186
...@@ -87,7 +87,7 @@ static __inline__ __sum16 csum_ipv6_magic(const struct in6_addr *saddr, ...@@ -87,7 +87,7 @@ static __inline__ __sum16 csum_ipv6_magic(const struct in6_addr *saddr,
carry = (sum < uproto); carry = (sum < uproto);
sum += carry; sum += carry;
return csum_fold((__force __wsum)csum); return csum_fold((__force __wsum)sum);
} }
#endif #endif
......
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