This is an automated email from the ASF dual-hosted git repository.

naraj pushed a commit to branch revert-958-mesh_sync_march21
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit c4ca4500e204ef25f6026cc37df9bc600ca6f132
Author: MichaƂ Narajowski <michal.narajow...@codecoup.pl>
AuthorDate: Thu May 27 10:20:19 2021 +0200

    Revert "mesh: Fix incorrect pointer type in cdb.c"
    
    This reverts commit 195313a8d9082f2a34a09002cc823005a9d0a9fc.
---
 nimble/host/mesh/src/provisioner.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nimble/host/mesh/src/provisioner.c 
b/nimble/host/mesh/src/provisioner.c
index c51a769..265dbf2 100644
--- a/nimble/host/mesh/src/provisioner.c
+++ b/nimble/host/mesh/src/provisioner.c
@@ -503,7 +503,7 @@ static void send_prov_data(void)
 #endif
        bt_mesh_prov_buf_init(pdu, PROV_DATA);
 #if MYNEWT_VAL(BLE_MESH_CDB)
-       net_buf_simple_add_mem(pdu, sub->keys[SUBNET_KEY_TX_IDX(sub)].net_key, 
16);
+       net_buf_simple_add_mem(&pdu, sub->keys[SUBNET_KEY_TX_IDX(sub)].net_key, 
16);
        net_buf_simple_add_be16(pdu, prov_device.node->net_idx);
        net_buf_simple_add_u8(pdu, bt_mesh_cdb_subnet_flags(sub));
        net_buf_simple_add_be32(pdu, bt_mesh_cdb.iv_index);

Reply via email to