From dfe8ac32fd5a64d3f544a79a6abe26307aae2696 Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Wed, 6 Nov 2013 16:08:49 +0100 Subject: [PATCH] android: Change name for get_disc_timeout Change name to get_discoverable_timeout. Previous name could be confusing with disconnection timeout. --- android/adapter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/adapter.c b/android/adapter.c index cf5edcd38..1d462c80a 100644 --- a/android/adapter.c +++ b/android/adapter.c @@ -1284,7 +1284,7 @@ static bool get_devices(void) return false; } -static bool get_disc_timeout(void) +static bool get_discoverable_timeout(void) { DBG("Not implemented"); @@ -1316,7 +1316,7 @@ static bool get_property(void *buf, uint16_t len) case HAL_PROP_ADAPTER_BONDED_DEVICES: return get_devices(); case HAL_PROP_ADAPTER_DISC_TIMEOUT: - return get_disc_timeout(); + return get_discoverable_timeout(); default: return false; } @@ -1332,7 +1332,7 @@ static void get_properties(void) get_service(); get_scan_mode(); get_devices(); - get_disc_timeout(); + get_discoverable_timeout(); } static bool start_discovery(void) -- 2.47.3