git: 2a1fa1c479dd - stable/12 - inet(3): Fix two typos in sysctl descriptions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 Dec 2021 15:58:07 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=2a1fa1c479dd24f8b0033c0a6d27b7015beba022
commit 2a1fa1c479dd24f8b0033c0a6d27b7015beba022
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-11-30 09:21:47 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-12-03 15:56:43 +0000
inet(3): Fix two typos in sysctl descriptions
- s/sequental/sequential/
(cherry picked from commit 27c4abc7cde0be8f9fdd8ac7725e9910b0cbf5d4)
---
sys/netinet/in_pcb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 5a8076f1171a..a8c7671ca0d2 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -204,11 +204,11 @@ SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomized,
SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomcps,
CTLFLAG_VNET | CTLFLAG_RW,
&VNET_NAME(ipport_randomcps), 0, "Maximum number of random port "
- "allocations before switching to a sequental one");
+ "allocations before switching to a sequential one");
SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomtime,
CTLFLAG_VNET | CTLFLAG_RW,
&VNET_NAME(ipport_randomtime), 0,
- "Minimum time to keep sequental port "
+ "Minimum time to keep sequential port "
"allocation before switching to a random one");
#endif /* INET */