From dce613ef261251656eb0eb9fbf3241bf036ab4e0 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Thu, 31 Oct 2013 14:15:09 +0100 Subject: [PATCH] android: Set pairable mode only if it is not set There is no need to set already set setting. --- android/adapter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/adapter.c b/android/adapter.c index b8c73d75e..02f356df7 100644 --- a/android/adapter.c +++ b/android/adapter.c @@ -536,7 +536,8 @@ static void read_info_complete(uint8_t status, uint16_t length, const void *para if (missing_settings & MGMT_SETTING_SSP) set_mode(MGMT_OP_SET_SSP, 0x01); - set_mode(MGMT_OP_SET_PAIRABLE, 0x01); + if (missing_settings & MGMT_SETTING_PAIRABLE) + set_mode(MGMT_OP_SET_PAIRABLE, 0x01); return; -- 2.47.3