From c9cc38826166e73ffc28613f55ba18467d149e60 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Mon, 29 Oct 2018 17:44:38 -0700 Subject: binding: bluetooth: add BLUEZ_DEFAULT_ADAPTER Bug-AGL: SPEC-1630 Change-Id: I8e55d273ab58992e6f6327523853c6d330505278 Signed-off-by: Matt Ranostay --- binding/bluetooth-util.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'binding/bluetooth-util.c') diff --git a/binding/bluetooth-util.c b/binding/bluetooth-util.c index 3e0303f..f57b43e 100644 --- a/binding/bluetooth-util.c +++ b/binding/bluetooth-util.c @@ -1038,13 +1038,10 @@ void json_process_path(json_object *jresp, const char *path) { } gchar *return_bluez_path(afb_req_t request) { - const char *adapter, *device; + const char *adapter = afb_req_value(request, "adapter"); + const char *device; - adapter = afb_req_value(request, "adapter"); - if (!adapter) { - afb_req_fail(request, "failed", "No adapter parameter"); - return NULL; - } + adapter = adapter ? adapter : BLUEZ_DEFAULT_ADAPTER; device = afb_req_value(request, "device"); if (!device) { -- cgit 1.2.3-korg