From 2e981e1a9498448a05900ccfd891ceb320e81034 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 23 Oct 2024 16:47:02 -0400 Subject: [PATCH] monitor: Fix opcode for MGMT_OP_MESH_SEND_CANCEL MGMT_OP_MESH_SEND_CANCEL opcode is 0x005A not 0x0056. --- monitor/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/packet.c b/monitor/packet.c index 32a440bbe..6d869ffea 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -14982,7 +14982,7 @@ static const struct mgmt_data mgmt_command_table[] = { { 0x0059, "Mesh Send", mgmt_mesh_send_cmd, 19, false, mgmt_mesh_send_rsp, 1, true}, - { 0x0056, "Mesh Send Cancel", + { 0x005A, "Mesh Send Cancel", mgmt_mesh_send_cancel_cmd, 1, true, mgmt_null_rsp, 0, true}, { } -- 2.47.3