]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Bluetooth: Fix mgmt_unpair_device command status
authorJohan Hedberg <johan.hedberg@intel.com>
Thu, 9 Feb 2012 15:19:27 +0000 (17:19 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 13 Feb 2012 15:01:37 +0000 (17:01 +0200)
The default response status to unpair_device should be set as 0 instead
of a generic failure value. When disconnection is not needed (i.e. we
can reply imediately) we should return success and not failure.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/mgmt.c

index 545919828562d4b7fd69ff37ae91bd089c7a57e3..0cf0f4dc8213dc441608b7cc2b9aa5792550febd 100644 (file)
@@ -1097,7 +1097,6 @@ static int unpair_device(struct sock *sk, u16 index, void *data, u16 len)
        memset(&rp, 0, sizeof(rp));
        bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
        rp.addr.type = cp->addr.type;
-       rp.status = MGMT_STATUS_FAILED;
 
        if (cp->addr.type == MGMT_ADDR_BREDR)
                err = hci_remove_link_key(hdev, &cp->addr.bdaddr);