git: b20ec58669e2 - main - vfs.typenumhash: fix sysctl description
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 10 Sep 2022 22:48:43 UTC
The branch main has been updated by allanjude: URL: https://cgit.FreeBSD.org/src/commit/?id=b20ec58669e274b8632a253040bb3d41df3cb58b commit b20ec58669e274b8632a253040bb3d41df3cb58b Author: Allan Jude <allanjude@FreeBSD.org> AuthorDate: 2022-09-10 22:47:51 +0000 Commit: Allan Jude <allanjude@FreeBSD.org> CommitDate: 2022-09-10 22:47:51 +0000 vfs.typenumhash: fix sysctl description a string continuation was missing a space, resulting in two works being smushed together. Sponsored by: Klara, Inc. --- sys/kern/vfs_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index d6065deb25fe..6572a8e362c2 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -80,7 +80,7 @@ SX_SYSINIT(vfsconf, &vfsconf_sx, "vfsconf"); static int vfs_typenumhash = 1; SYSCTL_INT(_vfs, OID_AUTO, typenumhash, CTLFLAG_RDTUN, &vfs_typenumhash, 0, "Set vfc_typenum using a hash calculation on vfc_name, so that it does not" - "change when file systems are loaded in a different order."); + " change when file systems are loaded in a different order."); /* * A Zen vnode attribute structure.