aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2015-03-16 12:34:55 -0700
committerJohan Hedberg <johan.hedberg@intel.com>2015-03-16 21:36:19 +0200
commite091526dfdaa955a7481a696094ac9e5d1bdb0fe (patch)
treeb24a78c66eab33f1103e4a4cbb477f38558a3f62 /net/bluetooth
parentBluetooth: Add clarifying comment when setting local OOB flag (diff)
downloadlinux-dev-e091526dfdaa955a7481a696094ac9e5d1bdb0fe.tar.xz
linux-dev-e091526dfdaa955a7481a696094ac9e5d1bdb0fe.zip
Bluetooth: Use smp->remote_pk + 32 instead of &smp->remote_pk[32]
Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
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 1bd281060de2..2b5c13932b0a 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -2543,7 +2543,7 @@ static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
}
SMP_DBG("Remote Public Key X: %32phN", smp->remote_pk);
- SMP_DBG("Remote Public Key Y: %32phN", &smp->remote_pk[32]);
+ SMP_DBG("Remote Public Key Y: %32phN", smp->remote_pk + 32);
if (!ecdh_shared_secret(smp->remote_pk, smp->local_sk, smp->dhkey))
return SMP_UNSPECIFIED;