Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3432711f authored by Johan Hedberg's avatar Johan Hedberg Committed by Marcel Holtmann
Browse files

Bluetooth: Ignore SMP data on non-LE links



The SMP CID is only defined for LE transports. Instead of returning an
error from smp_sig_channel() in this case (which would cause a
disconnection) just return 0 to ignore the data, which is consistent
with the behavior for other unknown CIDs.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 07e307f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -856,7 +856,7 @@ int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb)

	if (hcon->type != LE_LINK) {
		kfree_skb(skb);
		return -ENOTSUPP;
		return 0;
	}

	if (skb->len < 1) {