Diff between ddd7e11402c4b705612b32a58dad43e51e7d3c4e and ac7c1ff99083df8b00ddc93f0759ea67f9b64828
Changed Files
| File | Additions | Deletions | Status |
| src/mgmt.c | +2 | -1 | modified |
Full Patch
diff --git a/src/mgmt.c b/src/mgmt.c
index 8eba551..5ae24ec 100644
--- a/src/mgmt.c
+++ b/src/mgmt.c
@@ -250,7 +250,8 @@ int mgmt_set_discoverable(int index, gboolean discoverable, uint16_t timeout)
struct mgmt_hdr *hdr = (void *) buf;
struct mgmt_cp_set_discoverable *cp = (void *) &buf[sizeof(*hdr)];
- DBG("index %d discoverable %d", index, discoverable);
+ DBG("index %d discoverable %d timeout %d", index,
+ discoverable, timeout);
memset(buf, 0, sizeof(buf));
hdr->opcode = htobs(MGMT_OP_SET_DISCOVERABLE);