Return-Path: From: Hemant Gupta To: Cc: Naresh Gupta , Hemant Gupta , Hemant Gupta Subject: [PATCH-v1 1/1] Bluetooth: Incorrect address while storing LTK. Date: Fri, 23 Dec 2011 11:07:24 +0530 Message-ID: <1324618644-17551-2-git-send-email-hemant.gupta@stericsson.com> In-Reply-To: <1324618644-17551-1-git-send-email-hemant.gupta@stericsson.com> References: <1324618644-17551-1-git-send-email-hemant.gupta@stericsson.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-bluetooth-owner@vger.kernel.org List-ID: 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 --- net/bluetooth/smp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index 9fea4bf..32c47de 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); -- 1.6.6.1