shared/att: Fix failing to set security level

bt_att_chan_set_security attempts to set BT_SECURITY without first
checking what is the current security level which may cause errors
since the kernel does actually return -EINVAL when the security doesn't
change.
This commit is contained in:
Luiz Augusto von Dentz 2024-11-19 11:32:42 -05:00
parent da0253959e
commit 5c65356cae

View File

@ -727,6 +727,9 @@ static bool bt_att_chan_set_security(struct bt_att_chan *chan, int level)
{
struct bt_security sec;
if (level == bt_att_chan_get_security(chan))
return true;
if (chan->type == BT_ATT_LOCAL) {
chan->sec_level = level;
return true;