Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Sep 2022 22:48:43 GMT
From:      Allan Jude <allanjude@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: b20ec58669e2 - main - vfs.typenumhash: fix sysctl description
Message-ID:  <202209102248.28AMmhff057894@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209102248.28AMmhff057894>