Fix the case for some sysctl descriptions.

Reviewed by:	gnn
This commit is contained in:
Brad Davis 2016-07-26 20:20:09 +00:00
parent 8de6c26711
commit 439e76ec22
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303343

View file

@ -316,12 +316,12 @@ SYSINIT(cc, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_FIRST, cc_init, NULL);
/* Declare sysctl tree and populate it. */
SYSCTL_NODE(_net_inet_tcp, OID_AUTO, cc, CTLFLAG_RW, NULL,
"congestion control related settings");
"Congestion control related settings");
SYSCTL_PROC(_net_inet_tcp_cc, OID_AUTO, algorithm,
CTLFLAG_VNET | CTLTYPE_STRING | CTLFLAG_RW,
NULL, 0, cc_default_algo, "A", "default congestion control algorithm");
NULL, 0, cc_default_algo, "A", "Default congestion control algorithm");
SYSCTL_PROC(_net_inet_tcp_cc, OID_AUTO, available, CTLTYPE_STRING|CTLFLAG_RD,
NULL, 0, cc_list_available, "A",
"list available congestion control algorithms");
"List available congestion control algorithms");