summaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorHemant Gupta <hemant.gupta@stericsson.com>2011-12-23 06:37:24 +0100
committerGustavo F. Padovan <padovan@profusion.mobi>2011-12-23 19:55:06 +0100
commit3573b80c42e88c2a43c068c86bcd1a753cf6e1a0 (patch)
treec5d3101ff84f7d1db6f2bfe012be9fae59e9f82a /net/bluetooth
parentBluetooth: Don't disable interrupt when locking the queue (diff)
downloadlinux-3573b80c42e88c2a43c068c86bcd1a753cf6e1a0.tar.xz
linux-3573b80c42e88c2a43c068c86bcd1a753cf6e1a0.zip
Bluetooth: Incorrect address while storing LTK.
This patch fixes incorrect address storage while storing Long Term Key for LE Devices using SMP (Security Manager Protocol). The address stored should be of remote device and not of source device. Signed-off-by: Hemant Gupta <hemant.gupta@stericsson.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 9fea4bfd0eb5..32c47de30344 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -820,7 +820,7 @@ static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb)
skb_pull(skb, sizeof(*rp));
- hci_add_ltk(conn->hcon->hdev, 1, conn->src, smp->smp_key_size,
+ hci_add_ltk(conn->hcon->hdev, 1, conn->dst, smp->smp_key_size,
rp->ediv, rp->rand, smp->tk);
smp_distribute_keys(conn, 1);