summaryrefslogtreecommitdiff
path: root/usr.sbin/relayd
diff options
context:
space:
mode:
authorLawrence Teo <lteo@cvs.openbsd.org>2014-10-25 03:23:50 +0000
committerLawrence Teo <lteo@cvs.openbsd.org>2014-10-25 03:23:50 +0000
commitd23548bdc8cdd3b951117321d755c0aa9cddbcfa (patch)
tree5e811926804e83ed3dc0550fd7d6b4a88140da18 /usr.sbin/relayd
parent58739bc23b87e86d504a597fd2ac5ca1b2d5d497 (diff)
Remove unnecessary netinet/in_systm.h include.
ok millert@
Diffstat (limited to 'usr.sbin/relayd')
-rw-r--r--usr.sbin/relayd/check_icmp.c3
-rw-r--r--usr.sbin/relayd/hce.c3
-rw-r--r--usr.sbin/relayd/log.c3
-rw-r--r--usr.sbin/relayd/proc.c3
-rw-r--r--usr.sbin/relayd/relay.c3
-rw-r--r--usr.sbin/relayd/relay_http.c3
-rw-r--r--usr.sbin/relayd/relay_udp.c3
7 files changed, 7 insertions, 14 deletions
diff --git a/usr.sbin/relayd/check_icmp.c b/usr.sbin/relayd/check_icmp.c
index e63f26fed4a..0d2b2f2bf38 100644
--- a/usr.sbin/relayd/check_icmp.c
+++ b/usr.sbin/relayd/check_icmp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: check_icmp.c,v 1.36 2013/03/10 23:32:53 reyk Exp $ */
+/* $OpenBSD: check_icmp.c,v 1.37 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -23,7 +23,6 @@
#include <sys/sysctl.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
diff --git a/usr.sbin/relayd/hce.c b/usr.sbin/relayd/hce.c
index dd1447d015b..83d7d94b373 100644
--- a/usr.sbin/relayd/hce.c
+++ b/usr.sbin/relayd/hce.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hce.c,v 1.64 2013/03/10 23:32:53 reyk Exp $ */
+/* $OpenBSD: hce.c,v 1.65 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -24,7 +24,6 @@
#include <sys/un.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
diff --git a/usr.sbin/relayd/log.c b/usr.sbin/relayd/log.c
index f2a6d32746e..7d385c3d4d7 100644
--- a/usr.sbin/relayd/log.c
+++ b/usr.sbin/relayd/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.23 2014/07/12 14:34:13 reyk Exp $ */
+/* $OpenBSD: log.c,v 1.24 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -22,7 +22,6 @@
#include <sys/tree.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
diff --git a/usr.sbin/relayd/proc.c b/usr.sbin/relayd/proc.c
index e4bf025cbc2..49b31b01f7a 100644
--- a/usr.sbin/relayd/proc.c
+++ b/usr.sbin/relayd/proc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: proc.c,v 1.16 2014/08/18 12:59:00 reyk Exp $ */
+/* $OpenBSD: proc.c,v 1.17 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2010 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -24,7 +24,6 @@
#include <sys/tree.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
diff --git a/usr.sbin/relayd/relay.c b/usr.sbin/relayd/relay.c
index ba8787a5aac..59426161538 100644
--- a/usr.sbin/relayd/relay.c
+++ b/usr.sbin/relayd/relay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay.c,v 1.178 2014/10/15 11:06:16 reyk Exp $ */
+/* $OpenBSD: relay.c,v 1.179 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2006 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -26,7 +26,6 @@
#include <sys/hash.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
diff --git a/usr.sbin/relayd/relay_http.c b/usr.sbin/relayd/relay_http.c
index fa7b2cee839..96aca504ee4 100644
--- a/usr.sbin/relayd/relay_http.c
+++ b/usr.sbin/relayd/relay_http.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay_http.c,v 1.34 2014/09/15 08:06:11 reyk Exp $ */
+/* $OpenBSD: relay_http.c,v 1.35 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2006 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -26,7 +26,6 @@
#include <sys/hash.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
diff --git a/usr.sbin/relayd/relay_udp.c b/usr.sbin/relayd/relay_udp.c
index d20e1b2146a..fab7b966495 100644
--- a/usr.sbin/relayd/relay_udp.c
+++ b/usr.sbin/relayd/relay_udp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay_udp.c,v 1.32 2014/08/08 18:26:50 reyk Exp $ */
+/* $OpenBSD: relay_udp.c,v 1.33 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2007 - 2013 Reyk Floeter <reyk@openbsd.org>
@@ -26,7 +26,6 @@
#include <sys/hash.h>
#include <net/if.h>
-#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>