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

Commit 5b154abb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "L2TP: Fixes the issue where UDP checksum flags are not properly handled"

parents 804c589e f3f2f155
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1375,9 +1375,9 @@ static int l2tp_tunnel_sock_create(struct net *net,
			memcpy(&udp_conf.peer_ip6, cfg->peer_ip6,
			       sizeof(udp_conf.peer_ip6));
			udp_conf.use_udp6_tx_checksums =
			    cfg->udp6_zero_tx_checksums;
			   !cfg->udp6_zero_tx_checksums;
			udp_conf.use_udp6_rx_checksums =
			    cfg->udp6_zero_rx_checksums;
			   !cfg->udp6_zero_rx_checksums;
		} else
#endif
		{