Message ID | 20210222140727.Bluez.1.I127ac7b2fadba6ef4cce42360efd9b8129251753@changeid (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Luiz Von Dentz |
Headers | show |
Series | [Bluez] adapter: fix set_mode MGMT_OP_SET_BONDABLE | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=436335 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Hi Archie, On Sun, Feb 21, 2021 at 10:41 PM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=436335 > > ---Test result--- > > ############################## > Test: CheckPatch - PASS > > ############################## > Test: CheckGitLint - PASS > > ############################## > Test: CheckBuild - PASS > > ############################## > Test: MakeCheck - PASS > > > > --- > Regards, > Linux Bluetooth > Applied, thanks.
diff --git a/src/adapter.c b/src/adapter.c index c1f976323e..ae1a70b5ba 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -646,7 +646,7 @@ static bool set_mode(struct btd_adapter *adapter, uint16_t opcode, setting = MGMT_SETTING_DISCOVERABLE; break; case MGMT_OP_SET_BONDABLE: - setting = MGMT_SETTING_DISCOVERABLE; + setting = MGMT_SETTING_BONDABLE; break; }
From: Archie Pusaka <apusaka@chromium.org> Currently pending_settings is assigned MGMT_SETTING_DISCOVERABLE, but it should have been MGMT_SETTING_BONDABLE instead. --- src/adapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)