mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(ble_mesh):Fixed a compatibility issue with the provisioner
Closes https://github.com/espressif/esp-idf/issues/13741
This commit is contained in:
parent
1bec4902b2
commit
aa830471f4
@ -1702,7 +1702,7 @@ static void prov_capabilities(const uint8_t idx, const uint8_t *data)
|
||||
|
||||
algorithms = sys_get_be16(&data[1]);
|
||||
BT_INFO("Algorithms: 0x%04x", algorithms);
|
||||
if (algorithms != BIT(PROV_ALG_P256)) {
|
||||
if (!(algorithms & BIT(PROV_ALG_P256))) {
|
||||
BT_ERR("Invalid algorithms 0x%04x", algorithms);
|
||||
goto fail;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user