Add syntactic sugar missed in r226437 and then not added either when moving

things around in r226448 but desperately needed to always make things
compile successfully.

MFC after:	1 week
This commit is contained in:
Bjoern A. Zeeb 2011-10-17 00:05:31 +00:00
parent 14417253d8
commit fba0cea143
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226454

View File

@ -183,7 +183,7 @@ SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, insecure_rst, CTLFLAG_RW,
&VNET_NAME(tcp_insecure_rst), 0,
"Follow the old (insecure) criteria for accepting RST packets");
VNET_DEFINE(int, tcp_recvspace) = 1024*64
VNET_DEFINE(int, tcp_recvspace) = 1024*64;
#define V_tcp_recvspace VNET(tcp_recvspace)
SYSCTL_VNET_INT(_net_inet_tcp, TCPCTL_RECVSPACE, tcp_recvspace, CTLFLAG_RW,
&VNET_NAME(tcp_recvspace), 0, "Initial receive socket buffer size");