summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhang zhengguang <zhengguang.zhang@intel.com>2014-03-25 14:16:52 +0800
committerZhang zhengguang <zhengguang.zhang@intel.com>2014-07-17 13:01:05 +0800
commit0ef3b5af5dbdd32325f3e5c9dc1dd773963e1f2e (patch)
treed5a28fe0f3666eaedd42d87a432d6f862b1dacd2
parent6276d6f81137b81d76f8601146b3191b54e65791 (diff)
downloadconnman-0ef3b5af5dbdd32325f3e5c9dc1dd773963e1f2e.tar.gz
connman-0ef3b5af5dbdd32325f3e5c9dc1dd773963e1f2e.tar.bz2
connman-0ef3b5af5dbdd32325f3e5c9dc1dd773963e1f2e.zip
Tizen: Unify bluetooth tethering enable logic
In bluez 4.x plugin, when bluetooth tethering is enabled, set_tethering() returns 0, while in bluez 5.x plugin, it returns -EINPROGRESS, which is not compatiable for ConnMan to handle both of them, this patch makes bluez 5.x tethering enable logic consistent with bluez 4.x. Change-Id: I618efd32b5f123fe9bdb58d10adb29c67a87796f
-rw-r--r--plugins/bluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bluetooth.c b/plugins/bluetooth.c
index 82217d03..28df4067 100644
--- a/plugins/bluetooth.c
+++ b/plugins/bluetooth.c
@@ -880,7 +880,7 @@ static int bluetooth_tech_set_tethering(struct connman_technology *technology,
if (i == 0)
return -ENODEV;
- return -EINPROGRESS;
+ return 0;
}
static struct connman_technology_driver tech_driver = {