summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2011-10-17 00:05:31 +0000
committerbz <bz@FreeBSD.org>2011-10-17 00:05:31 +0000
commita594d7a9bb1adfb9e8b78a07feb2701d3323d182 (patch)
tree3bf478d31c8d92273427a75b460247394508c963 /sys/netinet/tcp_input.c
parent4fd26a87dc702b4af14187dd0bea5282657c4b6d (diff)
downloadFreeBSD-src-a594d7a9bb1adfb9e8b78a07feb2701d3323d182.zip
FreeBSD-src-a594d7a9bb1adfb9e8b78a07feb2701d3323d182.tar.gz
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
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 10f3700..128cccd 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -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");
OpenPOWER on IntegriCloud