diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2006-09-27 19:17:16 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2006-09-27 19:17:16 +0000 |
commit | 833a88bb5e6c852c378fdd66703e02b4e02a0d6a (patch) | |
tree | 3fa36cc343537efa2ef11249a087fc41923689ca /hcid/dbus-adapter.c | |
parent | b819927d20fb5800d49fb184adac6fc3e2452b3d (diff) |
missing set expected return event for hci_send_req
Diffstat (limited to 'hcid/dbus-adapter.c')
-rw-r--r-- | hcid/dbus-adapter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hcid/dbus-adapter.c b/hcid/dbus-adapter.c index ab189ff6..8ceda6ed 100644 --- a/hcid/dbus-adapter.c +++ b/hcid/dbus-adapter.c @@ -481,6 +481,7 @@ static DBusHandlerResult handle_dev_set_mode_req(DBusConnection *conn, DBusMessa rq.clen = sizeof(hci_mode); rq.rparam = &status; rq.rlen = sizeof(status); + rq.event = EVT_CMD_COMPLETE; if (hci_send_req(dd, &rq, 1000) < 0) { int err = errno; @@ -1871,11 +1872,11 @@ static gboolean create_bonding_conn_complete(GIOChannel *io, GIOCondition cond, memset(&rq, 0, sizeof(rq)); rq.ogf = OGF_LINK_CTL; rq.ocf = OCF_AUTH_REQUESTED; - rq.event = EVT_CMD_STATUS; rq.cparam = &cp; rq.clen = AUTH_REQUESTED_CP_SIZE; rq.rparam = &rp; rq.rlen = EVT_CMD_STATUS_SIZE; + rq.event = EVT_CMD_STATUS; if (hci_send_req(dd, &rq, 500) < 0) { error("Unable to send HCI request: %s (%d)", |