summaryrefslogtreecommitdiffstats
path: root/src/hci.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hci.c')
-rw-r--r--src/hci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hci.c b/src/hci.c
index 48989aae..7135501b 100644
--- a/src/hci.c
+++ b/src/hci.c
@@ -2058,7 +2058,7 @@ int hci_read_link_supervision_timeout(int dd, uint16_t handle, uint16_t *timeout
return -1;
}
- *timeout = rp.link_sup_to;
+ *timeout = rp.timeout;
return 0;
}
@@ -2069,8 +2069,8 @@ int hci_write_link_supervision_timeout(int dd, uint16_t handle, uint16_t timeout
struct hci_request rq;
memset(&cp, 0, sizeof(cp));
- cp.handle = handle;
- cp.link_sup_to = timeout;
+ cp.handle = handle;
+ cp.timeout = timeout;
memset(&rq, 0, sizeof(rq));
rq.ogf = OGF_HOST_CTL;