From: Hemant Gupta Date: Fri, 30 Mar 2012 11:53:35 +0000 (+0530) Subject: Bluetooth: Send correct address type for LTK X-Git-Tag: next-20120402~35^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e027b5c0412ed6f5873a1df9ab5942238f75317f;p=karo-tx-linux.git Bluetooth: Send correct address type for LTK This patch updates the address type sent from kernel to management interface of BlueZ while sending the Long Term Key. Signed-off-by: Hemant Gupta Signed-off-by: Johan Hedberg --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 5a56e0cddef7..b4f7e328c9f8 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -2978,7 +2978,7 @@ int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent) ev.store_hint = persistent; bacpy(&ev.key.addr.bdaddr, &key->bdaddr); - ev.key.addr.type = key->bdaddr_type; + ev.key.addr.type = link_to_mgmt(LE_LINK, key->bdaddr_type); ev.key.authenticated = key->authenticated; ev.key.enc_size = key->enc_size; ev.key.ediv = key->ediv;