git: 8e968c5ff411 - main - bluetooth(4): Fix a typo in a kernel message in l2cap

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Mon, 17 Aug 2026 05:59:05 UTC
The branch main has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=8e968c5ff4112387c87f7afdf79d873a6f475b21

commit 8e968c5ff4112387c87f7afdf79d873a6f475b21
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-08-17 05:57:15 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-08-17 05:57:15 +0000

    bluetooth(4): Fix a typo in a kernel message in l2cap
    
    - s/staring/starting/
    
    MFC after:      5 days
---
 sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c b/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
index 4647bd2555ff..131acb297ee9 100644
--- a/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
+++ b/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
@@ -740,7 +740,7 @@ ng_l2cap_lp_receive(ng_l2cap_p l2cap, struct mbuf *m)
 		l2cap_hdr = mtod(m, ng_l2cap_hdr_t *);
 
 		NG_L2CAP_INFO(
-"%s: %s - staring new L2CAP packet, con_handle=%d, length=%d\n",
+"%s: %s - starting new L2CAP packet, con_handle=%d, length=%d\n",
 			__func__, NG_NODE_NAME(l2cap->node), con_handle,
 			le16toh(l2cap_hdr->length));