diff mbox series

[BlueZ] mesh: Fix sequence number of message in friend queue

Message ID 20220119154931.182497-1-brian.gix@intel.com
State New
Headers show
Series [BlueZ] mesh: Fix sequence number of message in friend queue | expand

Commit Message

Brian Gix Jan. 19, 2022, 3:49 p.m. UTC
As pointed out by https://github.com/bluez/bluez/issues/250, the last
segment of a multi-segmented message added to Friend Queue was getting
reset to the seqAuth value incorrectly. The correct sequence was set
within the preceding for loop.
---
 mesh/net.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/mesh/net.c b/mesh/net.c
index aa220f762..dd5398487 100644
--- a/mesh/net.c
+++ b/mesh/net.c
@@ -1325,7 +1325,6 @@  static bool friend_packet_queue(struct mesh_net *net,
 			hdr += (1 << SEGO_HDR_SHIFT);
 		}
 
-		frnd_msg->u.s12[seg_max].seq = seq;
 		frnd_msg->cnt_in = seg_max;
 		frnd_msg->last_len = size % 12;
 		if (!frnd_msg->last_len)