Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ static __inline__ __sum16 csum_ipv6_magic(const struct in6_addr *saddr,
	carry = (sum < uproto);
	sum += carry;

	return csum_fold((__force __wsum)csum);
	return csum_fold((__force __wsum)sum);
}

#endif