git: 08a6620093dc - main - nfsclient: Fix a typo in a panic message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 29 Oct 2025 08:26:39 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=08a6620093dc2786051bf6ae6f40ae048027021b
commit 08a6620093dc2786051bf6ae6f40ae048027021b
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 08:26:23 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-10-29 08:26:23 +0000
nfsclient: Fix a typo in a panic message
- s/eroneous/erroneous/
MFC after: 1 week
---
sys/fs/nfsclient/nfs_clrpcops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c
index b88169ba69d5..b61218958550 100644
--- a/sys/fs/nfsclient/nfs_clrpcops.c
+++ b/sys/fs/nfsclient/nfs_clrpcops.c
@@ -9760,7 +9760,7 @@ nfsm_split(struct mbuf *mp, uint64_t xfer)
pgno++;
} while (pgno < m->m_epg_npgs);
if (pgno == m->m_epg_npgs)
- panic("nfsm_split: eroneous ext_pgs mbuf");
+ panic("nfsm_split: erroneous ext_pgs mbuf");
m2 = mb_alloc_ext_pgs(M_WAITOK, mb_free_mext_pgs, 0);
m2->m_epg_flags |= EPG_FLAG_ANON;