This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
commit a724f0b9befa398a17337a979d07f26a8be60d27 Author: Szymon Janc <[email protected]> AuthorDate: Thu Dec 23 14:31:42 2021 +0100 nimble/mesh: Fix garbage in debug log meta was used uninitialed in this log. --- nimble/host/mesh/src/friend.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/nimble/host/mesh/src/friend.c b/nimble/host/mesh/src/friend.c index c7603a8..4ce0bbd 100644 --- a/nimble/host/mesh/src/friend.c +++ b/nimble/host/mesh/src/friend.c @@ -438,9 +438,6 @@ static int unseg_app_sdu_prepare(struct bt_mesh_friend *frnd, return 0; } - BT_DBG("Re-encrypting friend pdu (SeqNum %06x -> %06x)", - meta.crypto.seq_num, bt_mesh.seq); - err = unseg_app_sdu_unpack(frnd, buf, &meta); if (err) { return err;
