diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-08 07:33:39 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-08 07:33:39 +0000 |
commit | bb69c602cc2f10c794154716803997b4be82629b (patch) | |
tree | 2cde5c3c1bc187a00aeb76666582721b702642d7 /usr.sbin/ipftest | |
parent | 041e9d82c7484cc50036fc56939903735506cdf5 (diff) |
Prototype & Stylistic fixes for high -W gcc levels
Diffstat (limited to 'usr.sbin/ipftest')
-rw-r--r-- | usr.sbin/ipftest/ipft_ef.c | 3 | ||||
-rw-r--r-- | usr.sbin/ipftest/ipft_pc.c | 3 | ||||
-rw-r--r-- | usr.sbin/ipftest/ipft_sn.c | 3 | ||||
-rw-r--r-- | usr.sbin/ipftest/ipft_td.c | 3 | ||||
-rw-r--r-- | usr.sbin/ipftest/ipt.c | 3 | ||||
-rw-r--r-- | usr.sbin/ipftest/misc.c | 1 |
6 files changed, 11 insertions, 5 deletions
diff --git a/usr.sbin/ipftest/ipft_ef.c b/usr.sbin/ipftest/ipft_ef.c index f2af0bc6a61..edc7f578751 100644 --- a/usr.sbin/ipftest/ipft_ef.c +++ b/usr.sbin/ipftest/ipft_ef.c @@ -41,13 +41,14 @@ etherfind -n -t #include <netinet/tcpip.h> #include <net/if.h> #include <netdb.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include "ipf.h" #include "ipt.h" #ifndef lint static char sccsid[] = "@(#)ipft_ef.c 1.6 2/4/96 (C)1995 Darren Reed"; -static char rcsid[] = "$Id: ipft_ef.c,v 1.4 1996/07/18 04:59:22 dm Exp $"; +static char rcsid[] = "$Id: ipft_ef.c,v 1.5 1996/10/08 07:33:34 niklas Exp $"; #endif static int etherf_open(), etherf_close(), etherf_readip(); diff --git a/usr.sbin/ipftest/ipft_pc.c b/usr.sbin/ipftest/ipft_pc.c index e4020efb3fa..5c7056e14c9 100644 --- a/usr.sbin/ipftest/ipft_pc.c +++ b/usr.sbin/ipftest/ipft_pc.c @@ -25,13 +25,14 @@ #include <netinet/tcp.h> #include <netinet/tcpip.h> #include <net/if.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include "ipf.h" #include "ipt.h" #include "pcap.h" #ifndef lint -static char rcsid[] = "$Id: ipft_pc.c,v 1.4 1996/07/18 04:59:23 dm Exp $"; +static char rcsid[] = "$Id: ipft_pc.c,v 1.5 1996/10/08 07:33:35 niklas Exp $"; #endif struct llc { diff --git a/usr.sbin/ipftest/ipft_sn.c b/usr.sbin/ipftest/ipft_sn.c index 2e2b3370591..dbb0b54fd7a 100644 --- a/usr.sbin/ipftest/ipft_sn.c +++ b/usr.sbin/ipftest/ipft_sn.c @@ -28,13 +28,14 @@ #include <netinet/tcp.h> #include <netinet/tcpip.h> #include <net/if.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include "ipf.h" #include "ipt.h" #include "snoop.h" #ifndef lint -static char rcsid[] = "$Id: ipft_sn.c,v 1.3 1996/07/18 04:59:24 dm Exp $"; +static char rcsid[] = "$Id: ipft_sn.c,v 1.4 1996/10/08 07:33:35 niklas Exp $"; #endif struct llc { diff --git a/usr.sbin/ipftest/ipft_td.c b/usr.sbin/ipftest/ipft_td.c index 6ce649dea8a..be6a84b1130 100644 --- a/usr.sbin/ipftest/ipft_td.c +++ b/usr.sbin/ipftest/ipft_td.c @@ -50,13 +50,14 @@ tcpdump -nqte #include <netinet/tcpip.h> #include <net/if.h> #include <netdb.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include "ipf.h" #include "ipt.h" #ifndef lint static char sccsid[] = "@(#)ipft_td.c 1.8 2/4/96 (C)1995 Darren Reed"; -static char rcsid[] = "$Id: ipft_td.c,v 1.4 1996/07/18 04:59:24 dm Exp $"; +static char rcsid[] = "$Id: ipft_td.c,v 1.5 1996/10/08 07:33:36 niklas Exp $"; #endif static int tcpd_open(), tcpd_close(), tcpd_readip(); diff --git a/usr.sbin/ipftest/ipt.c b/usr.sbin/ipftest/ipt.c index 4ec9a8a5c39..584ea41e8cf 100644 --- a/usr.sbin/ipftest/ipt.c +++ b/usr.sbin/ipftest/ipt.c @@ -29,6 +29,7 @@ #include <netinet/ip_icmp.h> #include <netinet/tcpip.h> #include <net/if.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include <netdb.h> #include <arpa/nameser.h> @@ -40,7 +41,7 @@ #ifndef lint static char sccsid[] = "@(#)ipt.c 1.19 6/3/96 (C) 1993-1996 Darren Reed"; -static char rcsid[] = "$Id: ipt.c,v 1.5 1996/07/18 04:59:25 dm Exp $"; +static char rcsid[] = "$Id: ipt.c,v 1.6 1996/10/08 07:33:36 niklas Exp $"; #endif extern int fr_check(); diff --git a/usr.sbin/ipftest/misc.c b/usr.sbin/ipftest/misc.c index 76069ec1960..8000582e7a5 100644 --- a/usr.sbin/ipftest/misc.c +++ b/usr.sbin/ipftest/misc.c @@ -30,6 +30,7 @@ #include <netinet/ip_icmp.h> #include <netinet/tcpip.h> #include <net/if.h> +#include "ip_fil_compat.h" #include "ip_fil.h" #include <netdb.h> #include <arpa/nameser.h> |