diff options
author | trhodes <trhodes@FreeBSD.org> | 2008-07-25 23:54:07 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2008-07-25 23:54:07 +0000 |
commit | a9614a97a16b7ca08ac14be1eca59d640e37359d (patch) | |
tree | 099401c5d2f32eb3353bef5a2140804b20ad470d /sys | |
parent | 8330af909ca941f7f0083761fdafe90a332e74de (diff) | |
download | FreeBSD-src-a9614a97a16b7ca08ac14be1eca59d640e37359d.zip FreeBSD-src-a9614a97a16b7ca08ac14be1eca59d640e37359d.tar.gz |
Begin the sysctl descriptions with a capital letter.
Make some slight wording tweaks.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netipx/ipx_input.c | 8 | ||||
-rw-r--r-- | sys/netipx/ipx_usrreq.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index bc4587d..9f9b8d4 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -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; diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c index b22b680..f3f9897 100644 --- a/sys/netipx/ipx_usrreq.c +++ b/sys/netipx/ipx_usrreq.c @@ -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); |