svn commit: r261592 - head/sys/netinet
Gleb Smirnoff
glebius at FreeBSD.org
Fri Feb 7 14:26:34 UTC 2014
Author: glebius
Date: Fri Feb 7 14:26:33 2014
New Revision: 261592
URL: http://svnweb.freebsd.org/changeset/base/261592
Log:
Catch up on r261590.
Modified:
head/sys/netinet/in_pcb.c
Modified: head/sys/netinet/in_pcb.c
==============================================================================
--- head/sys/netinet/in_pcb.c Fri Feb 7 14:24:36 2014 (r261591)
+++ head/sys/netinet/in_pcb.c Fri Feb 7 14:26:33 2014 (r261592)
@@ -145,11 +145,7 @@ sysctl_net_ipport_check(SYSCTL_HANDLER_A
{
int error;
-#ifdef VIMAGE
- error = vnet_sysctl_handle_int(oidp, arg1, arg2, req);
-#else
error = sysctl_handle_int(oidp, arg1, arg2, req);
-#endif
if (error == 0) {
RANGECHK(V_ipport_lowfirstauto, 1, IPPORT_RESERVED - 1);
RANGECHK(V_ipport_lowlastauto, 1, IPPORT_RESERVED - 1);
More information about the svn-src-head
mailing list