diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-01-05 08:13:33 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-01-05 08:13:33 +0000 |
commit | 345dae38abafd2ccf4b1b1283546362810ae28c3 (patch) | |
tree | 6c68cba608bc2115154879531b7987e216d36f3a /usr.sbin | |
parent | e9df04ecd6447b8fa1f006b0f3ccc9d4a858d243 (diff) |
Remove useless <sys/socketvar.h> includes.
ok kettenis@, visa@, claudio@, deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/identd/identd.c | 4 | ||||
-rw-r--r-- | usr.sbin/npppd/common/radish.c | 3 | ||||
-rw-r--r-- | usr.sbin/snmpd/agentx.c | 4 | ||||
-rw-r--r-- | usr.sbin/snmpd/traphandler.c | 3 |
4 files changed, 6 insertions, 8 deletions
diff --git a/usr.sbin/identd/identd.c b/usr.sbin/identd/identd.c index 431c2481318..f0ffc612499 100644 --- a/usr.sbin/identd/identd.c +++ b/usr.sbin/identd/identd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identd.c,v 1.38 2017/07/04 01:09:42 dlg Exp $ */ +/* $OpenBSD: identd.c,v 1.39 2018/01/05 08:13:31 mpi Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> @@ -19,7 +19,7 @@ #include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> -#include <sys/socketvar.h> +#include <sys/queue.h> #include <sys/stat.h> #include <sys/sysctl.h> #include <sys/uio.h> diff --git a/usr.sbin/npppd/common/radish.c b/usr.sbin/npppd/common/radish.c index 9c99aa77017..ddc487b0193 100644 --- a/usr.sbin/npppd/common/radish.c +++ b/usr.sbin/npppd/common/radish.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radish.c,v 1.5 2017/05/30 17:52:05 yasuoka Exp $ */ +/* $OpenBSD: radish.c,v 1.6 2018/01/05 08:13:31 mpi Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * All rights reserved. @@ -41,7 +41,6 @@ #include <sys/types.h> #include <sys/socket.h> -#include <sys/socketvar.h> #include <string.h> #include <stdlib.h> #include <errno.h> diff --git a/usr.sbin/snmpd/agentx.c b/usr.sbin/snmpd/agentx.c index 6ae159b2268..85f6c47162c 100644 --- a/usr.sbin/snmpd/agentx.c +++ b/usr.sbin/snmpd/agentx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: agentx.c,v 1.10 2015/12/05 06:42:18 mmcc Exp $ */ +/* $OpenBSD: agentx.c,v 1.11 2018/01/05 08:13:32 mpi Exp $ */ /* * Copyright (c) 2013,2014 Bret Stephen Lambert <blambert@openbsd.org> * @@ -17,7 +17,7 @@ #include <sys/types.h> #include <sys/socket.h> -#include <sys/socketvar.h> +#include <sys/queue.h> #include <sys/uio.h> #include <sys/un.h> diff --git a/usr.sbin/snmpd/traphandler.c b/usr.sbin/snmpd/traphandler.c index f118ea4774c..a301d40bd6f 100644 --- a/usr.sbin/snmpd/traphandler.c +++ b/usr.sbin/snmpd/traphandler.c @@ -1,4 +1,4 @@ -/* $OpenBSD: traphandler.c,v 1.9 2017/08/12 04:29:57 rob Exp $ */ +/* $OpenBSD: traphandler.c,v 1.10 2018/01/05 08:13:32 mpi Exp $ */ /* * Copyright (c) 2014 Bret Stephen Lambert <blambert@openbsd.org> @@ -18,7 +18,6 @@ #include <sys/queue.h> #include <sys/socket.h> -#include <sys/socketvar.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/uio.h> |