diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2011-08-25 20:02:35 -0300 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-09-21 12:59:15 -0300 |
commit | feb45eb5961b1c8c4f5e9559f48e513d2714b223 (patch) | |
tree | 7305a9abb64d7af99d9d1e6538aed05c23979913 /net/bluetooth | |
parent | a492cd52b530cbcf42eb7349e6b435804a7a9271 (diff) | |
download | linux-3.10-feb45eb5961b1c8c4f5e9559f48e513d2714b223.tar.gz linux-3.10-feb45eb5961b1c8c4f5e9559f48e513d2714b223.tar.bz2 linux-3.10-feb45eb5961b1c8c4f5e9559f48e513d2714b223.zip |
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')
-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 8a7eaaedd67..63540d0c0db 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) BT_DBG("conn %p", conn); + hcon->pending_sec_level = BT_SECURITY_MEDIUM; + if (smp_ltk_encrypt(conn)) return 0; |