diff options
author | peter <peter@FreeBSD.org> | 1998-03-21 14:42:45 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-03-21 14:42:45 +0000 |
commit | e34da97453d764e7d07ef9dd964f014019aa5cae (patch) | |
tree | 0234926f222770c9cebc82713694e1baddc53356 /sys/contrib | |
parent | 73a9e18f54aacc548960dde4894eb3ab58b0da45 (diff) | |
download | FreeBSD-src-e34da97453d764e7d07ef9dd964f014019aa5cae.zip FreeBSD-src-e34da97453d764e7d07ef9dd964f014019aa5cae.tar.gz |
Make it compile.. missing "opt_ipfilter.h" and missing <sys/malloc.h>
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/ipfilter/netinet/ip_log.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/contrib/ipfilter/netinet/ip_log.c b/sys/contrib/ipfilter/netinet/ip_log.c index f6b3b59..889cf5d 100644 --- a/sys/contrib/ipfilter/netinet/ip_log.c +++ b/sys/contrib/ipfilter/netinet/ip_log.c @@ -5,8 +5,10 @@ * provided that this notice is preserved and due credit is given * to the original author and the contributors. * - * $Id: ip_log.c,v 1.1.1.2 1998/03/21 10:11:54 peter Exp $ + * $Id: ip_log.c,v 1.2 1998/03/21 11:34:14 peter Exp $ */ +#include "opt_ipfilter.h" + #ifdef IPFILTER_LOG # ifndef SOLARIS # define SOLARIS (defined(sun) && (defined(__svr4__) || defined(__SVR4))) @@ -44,7 +46,7 @@ # endif # include <sys/uio.h> # if !SOLARIS -# if (NetBSD > 199609) || (OpenBSD > 199603) +# if (NetBSD > 199609) || (OpenBSD > 199603) || defined(__FreeBSD__) # include <sys/dirent.h> # else # include <sys/dir.h> @@ -73,7 +75,7 @@ # include <net/af.h> # endif # if __FreeBSD_version >= 300000 -# include <net/if_var.h> +# include <sys/malloc.h> # endif # include <net/route.h> # include <netinet/in.h> |