Begin the sysctl descriptions with a capital letter.

Make some slight wording tweaks.
This commit is contained in:
trhodes 2008-07-25 23:54:07 +00:00
parent 8330af909c
commit a9614a97a1
2 changed files with 6 additions and 6 deletions

View File

@ -86,19 +86,19 @@ __FBSDID("$FreeBSD$");
int ipxcksum = 0;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, checksum, CTLFLAG_RW,
&ipxcksum, 0, "compute ipx checksum");
&ipxcksum, 0, "Compute ipx checksum");
static int ipxprintfs = 0; /* printing forwarding information */
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxprintfs, CTLFLAG_RW,
&ipxprintfs, 0, "printing forwarding information");
&ipxprintfs, 0, "Printing forwarding information");
static int ipxforwarding = 0;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxforwarding, CTLFLAG_RW,
&ipxforwarding, 0, "do ipx forwarding");
&ipxforwarding, 0, "Enable ipx forwarding");
static int ipxnetbios = 0;
SYSCTL_INT(_net_ipx, OID_AUTO, ipxnetbios, CTLFLAG_RW,
&ipxnetbios, 0, "propagate netbios over ipx");
&ipxnetbios, 0, "Propagate netbios over ipx");
const union ipx_net ipx_zeronet;
const union ipx_host ipx_zerohost;

View File

@ -96,10 +96,10 @@ __FBSDID("$FreeBSD$");
static int ipxsendspace = IPXSNDQ;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxsendspace, CTLFLAG_RW,
&ipxsendspace, 0, "ipx send buffer space");
&ipxsendspace, 0, "Send buffer space");
static int ipxrecvspace = IPXRCVQ;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxrecvspace, CTLFLAG_RW,
&ipxrecvspace, 0, "ipx receive buffer space");
&ipxrecvspace, 0, "Receive buffer space");
static void ipx_usr_abort(struct socket *so);
static int ipx_attach(struct socket *so, int proto, struct thread *td);