git: 9d109792c0d6 - stable/13 - vxlan(4): Fix two typos in sysctl descriptions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 02 Apr 2022 13:35:48 UTC
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");