Date: Sat, 8 Nov 2025 20:10:03 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: ea1dea713bae - stable/15 - fusefs(5): Fix a couple of typos in kernel messages Message-ID: <202511082010.5A8KA3Ec093198@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=ea1dea713bae0ade698e3c54456b8ae1926b9d00 commit ea1dea713bae0ade698e3c54456b8ae1926b9d00 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-10-28 08:16:35 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-11-08 20:09:52 +0000 fusefs(5): Fix a couple of typos in kernel messages - s/intalled/installed/ - s/attributess/attributes/ (cherry picked from commit b57198f620bcbf899a32c3de9526bd525ab8a39e) --- sys/fs/fuse/fuse_ipc.c | 2 +- sys/fs/fuse/fuse_vnops.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/fs/fuse/fuse_ipc.c b/sys/fs/fuse/fuse_ipc.c index 7f754ab7f1d4..bc36f0070d7d 100644 --- a/sys/fs/fuse/fuse_ipc.c +++ b/sys/fs/fuse/fuse_ipc.c @@ -694,7 +694,7 @@ fuse_body_audit(struct fuse_ticket *ftick, size_t blen) break; case FUSE_FORGET: - panic("FUSE: a handler has been intalled for FUSE_FORGET"); + panic("FUSE: a handler has been installed for FUSE_FORGET"); break; case FUSE_GETATTR: diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c index 00ad11108ee0..19e98e40f6ef 100644 --- a/sys/fs/fuse/fuse_vnops.c +++ b/sys/fs/fuse/fuse_vnops.c @@ -2756,7 +2756,7 @@ fuse_vnop_setextattr(struct vop_setextattr_args *ap) */ if (fsess_not_impl(mp, FUSE_REMOVEXATTR)) return (EXTERROR(EOPNOTSUPP, "This server does not " - "implement removing extended attributess")); + "implement removing extended attributes")); else return (EXTERROR(EINVAL, "DELETEEXTATTR should be used " "to remove extattrs"));help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202511082010.5A8KA3Ec093198>
