From fae2d03c07c112fb1815f4f857f02c9c4452a012 Mon Sep 17 00:00:00 2001 From: Grzegorz Kolodziejczyk Date: Fri, 19 Jan 2018 17:41:26 +0100 Subject: [PATCH] tools/btpclient: Fix start adv commend comment Comment should be aproperiate for advertising command. Device needs to be powered to advertise. --- tools/btpclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/btpclient.c b/tools/btpclient.c index af0e75290..33116ce1b 100644 --- a/tools/btpclient.c +++ b/tools/btpclient.c @@ -1038,7 +1038,7 @@ static void btp_gap_start_advertising(uint8_t index, const void *param, goto failed; } - /* Adapter needs to be powered to be able to remove devices */ + /* Adapter needs to be powered to be able to advertise */ if (!l_dbus_proxy_get_property(adapter->proxy, "Powered", "b", &prop) || !prop || ad.registered) goto failed; -- 2.47.3