git: 1215d4bd82b2 - stable/12 - vxlan(4): Fix two typos in sysctl descriptions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 02 Apr 2022 13:44:46 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=1215d4bd82b273044bf9ff113181dbdb7fa80921
commit 1215d4bd82b273044bf9ff113181dbdb7fa80921
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:44:37 +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 e333f7272e52..17f96727ca12 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -3050,10 +3050,10 @@ vxlan_sysctl_setup(struct vxlan_softc *sc)
OID_AUTO, "ftable", CTLFLAG_RD, 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");