git: d9d5b117972e - stable/13 - ng_btsocket(4): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 11 Apr 2022 03:39:21 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=d9d5b117972ee3c86a97c291eaa0cb38048e631a
commit d9d5b117972ee3c86a97c291eaa0cb38048e631a
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-06 16:27:29 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-11 03:39:10 +0000
ng_btsocket(4): Fix a typo in an error message
- s/mulitplexor/multiplexor/
(cherry picked from commit f64919bbd9b7d84f61a99264c33187fc63aca2a4)
---
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c b/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
index c0704bce55fa..5659dc2ce742 100644
--- a/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
+++ b/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
@@ -2000,7 +2000,7 @@ ng_btsocket_rfcomm_receive_sabm(ng_btsocket_rfcomm_session_p s, int dlci)
/* Make sure multiplexor channel is open */
if (s->state != NG_BTSOCKET_RFCOMM_SESSION_OPEN) {
NG_BTSOCKET_RFCOMM_ERR(
-"%s: Got SABM for dlci=%d with mulitplexor channel closed, state=%d, " \
+"%s: Got SABM for dlci=%d with multiplexor channel closed, state=%d, " \
"flags=%#x\n", __func__, dlci, s->state, s->flags);
return (EINVAL);