diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2011-08-25 19:02:35 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-09-21 11:59:15 -0400 |
commit | feb45eb5961b1c8c4f5e9559f48e513d2714b223 (patch) | |
tree | 7305a9abb64d7af99d9d1e6538aed05c23979913 /net/bluetooth/smp.c | |
parent | a492cd52b530cbcf42eb7349e6b435804a7a9271 (diff) |
Bluetooth: Fix not setting a pending security level
For slave initiated security, we should set a default security level,
for now BT_SECURITY_MEDIUM.
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/smp.c')
-rw-r--r-- | net/bluetooth/smp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index 8a7eaaedd67a..63540d0c0db3 100644 --- a/net/bluetooth/smp.c +++ b/net/bluetooth/smp.c | |||
@@ -531,6 +531,8 @@ static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb) | |||
531 | 531 | ||
532 | BT_DBG("conn %p", conn); | 532 | BT_DBG("conn %p", conn); |
533 | 533 | ||
534 | hcon->pending_sec_level = BT_SECURITY_MEDIUM; | ||
535 | |||
534 | if (smp_ltk_encrypt(conn)) | 536 | if (smp_ltk_encrypt(conn)) |
535 | return 0; | 537 | return 0; |
536 | 538 | ||