diff options
author | bde <bde@FreeBSD.org> | 1998-03-28 10:18:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-28 10:18:26 +0000 |
commit | dee7f44b926e2ae7097a847424fc1f14a017ba0d (patch) | |
tree | 62fbab0c76260fc26f5c6a9b1f091bb93b74b351 /sys/netinet/raw_ip.c | |
parent | f6e8fc035e8963ea6389049d22371980321c210e (diff) | |
download | FreeBSD-src-dee7f44b926e2ae7097a847424fc1f14a017ba0d.zip FreeBSD-src-dee7f44b926e2ae7097a847424fc1f14a017ba0d.tar.gz |
Fixed style bugs (mostly) in previous commit.
Diffstat (limited to 'sys/netinet/raw_ip.c')
-rw-r--r-- | sys/netinet/raw_ip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index a8103ff..ecd90c0 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_ip.c 8.7 (Berkeley) 5/15/95 - * $Id: raw_ip.c,v 1.51 1998/01/27 09:15:07 davidg Exp $ + * $Id: raw_ip.c,v 1.52 1998/03/24 18:06:23 wollman Exp $ */ #include <sys/param.h> @@ -44,6 +44,7 @@ #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/sysctl.h> + #include <vm/vm_zone.h> #include <net/if.h> @@ -96,7 +97,7 @@ rip_init() ripcbinfo.hashbase = hashinit(1, M_PCB, &ripcbinfo.hashmask); ripcbinfo.porthashbase = hashinit(1, M_PCB, &ripcbinfo.porthashmask); ripcbinfo.ipi_zone = zinit("ripcb", sizeof(struct inpcb), - nmbclusters/4, ZONE_INTERRUPT, 0); + nmbclusters / 4, ZONE_INTERRUPT, 0); } static struct sockaddr_in ripsrc = { sizeof(ripsrc), AF_INET }; |