Date: Sat, 2 Apr 2022 13:35:48 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: 9d109792c0d6 - stable/13 - vxlan(4): Fix two typos in sysctl descriptions Message-ID: <202204021335.232DZmZn003292@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=9d109792c0d606b594f63bf8bd2eb6a039b0d238 commit 9d109792c0d606b594f63bf8bd2eb6a039b0d238 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-02-07 17:23:35 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-02 13:33:48 +0000 vxlan(4): Fix two typos in sysctl descriptions - s/fowarding/forwarding/ (cherry picked from commit bef80a728561704d77772c5e270dbf14e7d2e855) --- sys/net/if_vxlan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c index 972af73fb50e..63b4af0fc635 100644 --- a/sys/net/if_vxlan.c +++ b/sys/net/if_vxlan.c @@ -3521,10 +3521,10 @@ vxlan_sysctl_setup(struct vxlan_softc *sc) OID_AUTO, "ftable", CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, ""); SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(node), OID_AUTO, "count", CTLFLAG_RD, &sc->vxl_ftable_cnt, 0, - "Number of entries in fowarding table"); + "Number of entries in forwarding table"); SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(node), OID_AUTO, "max", CTLFLAG_RD, &sc->vxl_ftable_max, 0, - "Maximum number of entries allowed in fowarding table"); + "Maximum number of entries allowed in forwarding table"); SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(node), OID_AUTO, "timeout", CTLFLAG_RD, &sc->vxl_ftable_timeout, 0, "Number of seconds between prunes of the forwarding table");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204021335.232DZmZn003292>