git: bef80a728561 - main - vxlan(4): Fix two typos in sysctl descriptions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 28 Mar 2022 17:35:40 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=bef80a728561704d77772c5e270dbf14e7d2e855
commit bef80a728561704d77772c5e270dbf14e7d2e855
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-02-07 17:23:35 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-03-28 17:35:34 +0000
vxlan(4): Fix two typos in sysctl descriptions
- s/fowarding/forwarding/
MFC after: 3 days
---
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 107a836f91de..291c7b591766 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -3523,10 +3523,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");