summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2012-12-04 02:24:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2012-12-04 02:24:48 +0000
commit9023faa39fcf19063833d6308114568a7657afe7 (patch)
tree5d336083ca440ef5ab91512fe3146dca41bd2485 /libexec
parent351d7a7c8f7fe76323d05f7456a41536052339e0 (diff)
remove some unnecessary sys/param.h inclusions
Diffstat (limited to 'libexec')
-rw-r--r--libexec/comsat/comsat.c3
-rw-r--r--libexec/fingerd/fingerd.c3
-rw-r--r--libexec/ftpd/ftpd.c3
-rw-r--r--libexec/identd/identd.c3
-rw-r--r--libexec/login_chpass/login_chpass.c3
-rw-r--r--libexec/login_lchpass/login_lchpass.c3
-rw-r--r--libexec/login_radius/raddauth.c3
-rw-r--r--libexec/login_reject/login_reject.c3
-rw-r--r--libexec/login_tis/login_tis.c3
-rw-r--r--libexec/login_token/login_token.c3
-rw-r--r--libexec/login_token/token.c3
-rw-r--r--libexec/login_token/tokendb.c3
-rw-r--r--libexec/rpc.yppasswdd/yppasswdd_mkpw.c3
-rw-r--r--libexec/rshd/rshd.c3
-rw-r--r--libexec/spamd-setup/spamd-setup.c3
15 files changed, 15 insertions, 30 deletions
diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c
index eb2e1b49e87..0e4b0a5cc22 100644
--- a/libexec/comsat/comsat.c
+++ b/libexec/comsat/comsat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: comsat.c,v 1.36 2009/10/27 23:59:31 deraadt Exp $ */
+/* $OpenBSD: comsat.c,v 1.37 2012/12/04 02:24:47 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -30,7 +30,6 @@
*/
#include <sys/limits.h>
-#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/wait.h>
diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c
index d4f9ce68acb..5d44b3f6dae 100644
--- a/libexec/fingerd/fingerd.c
+++ b/libexec/fingerd/fingerd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fingerd.c,v 1.35 2009/10/27 23:59:31 deraadt Exp $ */
+/* $OpenBSD: fingerd.c,v 1.36 2012/12/04 02:24:47 deraadt Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -29,7 +29,6 @@
* SUCH DAMAGE.
*/
-#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index 760dd253d35..43dca2743b7 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ftpd.c,v 1.195 2012/03/04 04:05:15 fgsch Exp $ */
+/* $OpenBSD: ftpd.c,v 1.196 2012/12/04 02:24:47 deraadt Exp $ */
/* $NetBSD: ftpd.c,v 1.15 1995/06/03 22:46:47 mycroft Exp $ */
/*
@@ -62,7 +62,6 @@
/*
* FTP server.
*/
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
diff --git a/libexec/identd/identd.c b/libexec/identd/identd.c
index 37e8351c885..875baf174c2 100644
--- a/libexec/identd/identd.c
+++ b/libexec/identd/identd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: identd.c,v 1.49 2010/06/06 07:05:40 jmc Exp $ */
+/* $OpenBSD: identd.c,v 1.50 2012/12/04 02:24:47 deraadt Exp $ */
/*
* This program is in the public domain and may be used freely by anyone
@@ -8,7 +8,6 @@
*/
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/file.h>
diff --git a/libexec/login_chpass/login_chpass.c b/libexec/login_chpass/login_chpass.c
index 2d665d5fa14..903ca333a28 100644
--- a/libexec/login_chpass/login_chpass.c
+++ b/libexec/login_chpass/login_chpass.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_chpass.c,v 1.15 2006/03/09 19:14:09 millert Exp $ */
+/* $OpenBSD: login_chpass.c,v 1.16 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995,1996 Berkeley Software Design, Inc. All rights reserved.
@@ -33,7 +33,6 @@
*
* BSDI $From: login_chpass.c,v 1.3 1996/08/21 21:01:48 prb Exp $
*/
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/login_lchpass/login_lchpass.c b/libexec/login_lchpass/login_lchpass.c
index 7d0a429b20a..6696067d38a 100644
--- a/libexec/login_lchpass/login_lchpass.c
+++ b/libexec/login_lchpass/login_lchpass.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_lchpass.c,v 1.13 2006/03/09 19:14:10 millert Exp $ */
+/* $OpenBSD: login_lchpass.c,v 1.14 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995,1996 Berkeley Software Design, Inc. All rights reserved.
@@ -33,7 +33,6 @@
*
* BSDI $From: login_lchpass.c,v 1.4 1997/08/08 18:58:23 prb Exp $
*/
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/login_radius/raddauth.c b/libexec/login_radius/raddauth.c
index 65975234bb4..331bc567959 100644
--- a/libexec/login_radius/raddauth.c
+++ b/libexec/login_radius/raddauth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: raddauth.c,v 1.23 2007/12/14 14:23:25 millert Exp $ */
+/* $OpenBSD: raddauth.c,v 1.24 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1996, 1997 Berkeley Software Design, Inc. All rights reserved.
@@ -66,7 +66,6 @@
*/
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
diff --git a/libexec/login_reject/login_reject.c b/libexec/login_reject/login_reject.c
index 5f264b08bc6..0c99873b884 100644
--- a/libexec/login_reject/login_reject.c
+++ b/libexec/login_reject/login_reject.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_reject.c,v 1.8 2006/04/02 04:14:49 deraadt Exp $ */
+/* $OpenBSD: login_reject.c,v 1.9 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995 Berkeley Software Design, Inc. All rights reserved.
@@ -33,7 +33,6 @@
*
* BSDI $From: login_reject.c,v 1.5 1996/08/22 20:43:11 prb Exp $
*/
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/login_tis/login_tis.c b/libexec/login_tis/login_tis.c
index d3f9569e3e2..7bd493cde60 100644
--- a/libexec/login_tis/login_tis.c
+++ b/libexec/login_tis/login_tis.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_tis.c,v 1.10 2010/10/15 10:18:42 jsg Exp $ */
+/* $OpenBSD: login_tis.c,v 1.11 2012/12/04 02:24:47 deraadt Exp $ */
/*
* Copyright (c) 2004 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -16,7 +16,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
diff --git a/libexec/login_token/login_token.c b/libexec/login_token/login_token.c
index 668a3b0fc02..056c9125d6f 100644
--- a/libexec/login_token/login_token.c
+++ b/libexec/login_token/login_token.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_token.c,v 1.8 2004/03/10 21:30:27 millert Exp $ */
+/* $OpenBSD: login_token.c,v 1.9 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995, 1996 Berkeley Software Design, Inc. All rights reserved.
@@ -35,7 +35,6 @@
*/
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/login_token/token.c b/libexec/login_token/token.c
index f08585e3829..f760395ba94 100644
--- a/libexec/login_token/token.c
+++ b/libexec/login_token/token.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: token.c,v 1.12 2010/10/15 10:18:42 jsg Exp $ */
+/* $OpenBSD: token.c,v 1.13 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@@ -40,7 +40,6 @@
*/
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/login_token/tokendb.c b/libexec/login_token/tokendb.c
index def4135df74..23a82c28a19 100644
--- a/libexec/login_token/tokendb.c
+++ b/libexec/login_token/tokendb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tokendb.c,v 1.8 2005/09/16 23:47:00 deraadt Exp $ */
+/* $OpenBSD: tokendb.c,v 1.9 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@@ -36,7 +36,6 @@
#include <sys/types.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <sys/time.h>
#include <sys/resource.h>
diff --git a/libexec/rpc.yppasswdd/yppasswdd_mkpw.c b/libexec/rpc.yppasswdd/yppasswdd_mkpw.c
index e98cab85c53..0d3220ab055 100644
--- a/libexec/rpc.yppasswdd/yppasswdd_mkpw.c
+++ b/libexec/rpc.yppasswdd/yppasswdd_mkpw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: yppasswdd_mkpw.c,v 1.29 2009/10/27 23:59:31 deraadt Exp $ */
+/* $OpenBSD: yppasswdd_mkpw.c,v 1.30 2012/12/04 02:24:47 deraadt Exp $ */
/*
* Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se>
@@ -26,7 +26,6 @@
* SUCH DAMAGE.
*/
-#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c
index ddd005a8478..bc9972da728 100644
--- a/libexec/rshd/rshd.c
+++ b/libexec/rshd/rshd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rshd.c,v 1.53 2009/10/27 23:59:31 deraadt Exp $ */
+/* $OpenBSD: rshd.c,v 1.54 2012/12/04 02:24:47 deraadt Exp $ */
/*-
* Copyright (c) 1988, 1989, 1992, 1993, 1994
@@ -37,7 +37,6 @@
* command\0
* data
*/
-#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/socket.h>
diff --git a/libexec/spamd-setup/spamd-setup.c b/libexec/spamd-setup/spamd-setup.c
index ee794e76e97..f2166e25041 100644
--- a/libexec/spamd-setup/spamd-setup.c
+++ b/libexec/spamd-setup/spamd-setup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spamd-setup.c,v 1.37 2009/09/09 16:05:55 claudio Exp $ */
+/* $OpenBSD: spamd-setup.c,v 1.38 2012/12/04 02:24:47 deraadt Exp $ */
/*
* Copyright (c) 2003 Bob Beck. All rights reserved.
@@ -24,7 +24,6 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>