diff options
author | ru <ru@FreeBSD.org> | 2004-01-27 22:17:39 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-01-27 22:17:39 +0000 |
commit | a50969358fe6ec75fbc1190e21c5f30174b9e0f3 (patch) | |
tree | 799e029a911b0265ebed3c38fc8ba30907ff42dd /sys/netinet/raw_ip.c | |
parent | cdb4a0e4a54f62e7d0ca7585c95aae3c0ef27a2c (diff) | |
download | FreeBSD-src-a50969358fe6ec75fbc1190e21c5f30174b9e0f3.zip FreeBSD-src-a50969358fe6ec75fbc1190e21c5f30174b9e0f3.tar.gz |
Correct the descriptions of the net.inet.{udp,raw}.recvspace sysctls.
Diffstat (limited to 'sys/netinet/raw_ip.c')
-rw-r--r-- | sys/netinet/raw_ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index 67df380..bd65e81 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -511,7 +511,7 @@ u_long rip_recvspace = RIPRCVQ; SYSCTL_INT(_net_inet_raw, OID_AUTO, maxdgram, CTLFLAG_RW, &rip_sendspace, 0, "Maximum outgoing raw IP datagram size"); SYSCTL_INT(_net_inet_raw, OID_AUTO, recvspace, CTLFLAG_RW, - &rip_recvspace, 0, "Maximum incoming raw IP datagram size"); + &rip_recvspace, 0, "Maximum space for incoming raw IP datagrams"); static int rip_attach(struct socket *so, int proto, struct thread *td) |