summaryrefslogtreecommitdiffstats
path: root/sys/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-03-28 10:18:26 +0000
committerbde <bde@FreeBSD.org>1998-03-28 10:18:26 +0000
commitdee7f44b926e2ae7097a847424fc1f14a017ba0d (patch)
tree62fbab0c76260fc26f5c6a9b1f091bb93b74b351 /sys/netinet/udp_usrreq.c
parentf6e8fc035e8963ea6389049d22371980321c210e (diff)
downloadFreeBSD-src-dee7f44b926e2ae7097a847424fc1f14a017ba0d.zip
FreeBSD-src-dee7f44b926e2ae7097a847424fc1f14a017ba0d.tar.gz
Fixed style bugs (mostly) in previous commit.
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r--sys/netinet/udp_usrreq.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index f9dd1a7..bb1e6da 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
- * $Id: udp_usrreq.c,v 1.44 1998/01/27 09:15:13 davidg Exp $
+ * $Id: udp_usrreq.c,v 1.45 1998/03/24 18:06:34 wollman Exp $
*/
#include <sys/param.h>
@@ -44,6 +44,7 @@
#include <sys/socketvar.h>
#include <sys/sysctl.h>
#include <sys/syslog.h>
+
#include <vm/vm_zone.h>
#include <net/if.h>
@@ -98,9 +99,10 @@ udp_init()
LIST_INIT(&udb);
udbinfo.listhead = &udb;
udbinfo.hashbase = hashinit(UDBHASHSIZE, M_PCB, &udbinfo.hashmask);
- udbinfo.porthashbase = hashinit(UDBHASHSIZE, M_PCB, &udbinfo.porthashmask);
+ udbinfo.porthashbase = hashinit(UDBHASHSIZE, M_PCB,
+ &udbinfo.porthashmask);
udbinfo.ipi_zone = zinit("udpcb", sizeof(struct inpcb), nmbclusters,
- ZONE_INTERRUPT, 0);
+ ZONE_INTERRUPT, 0);
}
void
OpenPOWER on IntegriCloud