git: 62114f33b014 - stable/12 - 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:46 UTC
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=62114f33b014d5876edc4f530fecd18e27e75472 commit 62114f33b014d5876edc4f530fecd18e27e75472 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:33 +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 91331ba95459..a5fa879f5eeb 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);