Once we get a Set LE command complete event, we should update current_settings from the controller_info. Otherwise, features which depend on that, such as device discovery, will not work properly. --- src/mgmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mgmt.c b/src/mgmt.c index b3ae776..fbd2a6b 100644 --- a/src/mgmt.c +++ b/src/mgmt.c @@ -1388,7 +1388,7 @@ static void mgmt_cmd_complete(int sk, uint16_t index, void *buf, size_t len) DBG("set_ssp complete"); break; case MGMT_OP_SET_LE: - DBG("set_le complete"); + mgmt_new_settings(sk, index, ev->data, len); break; case MGMT_OP_ADD_UUID: mgmt_add_uuid_complete(sk, index, ev->data, len); -- 1.7.11.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html