summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels.c3
-rw-r--r--includes.h1
-rw-r--r--ssh-keyscan.c4
-rw-r--r--ssh-pkcs11-helper.c3
-rw-r--r--sshconnect.c3
-rw-r--r--sshd.c3
6 files changed, 12 insertions, 5 deletions
diff --git a/channels.c b/channels.c
index 9dcd81286..6db92cbac 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.337 2014/10/08 22:15:06 djm Exp $ */ 1/* $OpenBSD: channels.c,v 1.338 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -42,6 +42,7 @@
42#include "includes.h" 42#include "includes.h"
43 43
44#include <sys/types.h> 44#include <sys/types.h>
45#include <sys/param.h>
45#include <sys/stat.h> 46#include <sys/stat.h>
46#include <sys/ioctl.h> 47#include <sys/ioctl.h>
47#include <sys/un.h> 48#include <sys/un.h>
diff --git a/includes.h b/includes.h
index 07bcd89f2..095161c28 100644
--- a/includes.h
+++ b/includes.h
@@ -23,6 +23,7 @@
23#endif 23#endif
24 24
25#include <sys/types.h> 25#include <sys/types.h>
26#include <sys/param.h>
26#include <sys/socket.h> /* For CMSG_* */ 27#include <sys/socket.h> /* For CMSG_* */
27 28
28#ifdef HAVE_LIMITS_H 29#ifdef HAVE_LIMITS_H
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 3fabfba14..84301b6ff 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keyscan.c,v 1.92 2014/04/29 18:01:49 markus Exp $ */ 1/* $OpenBSD: ssh-keyscan.c,v 1.93 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. 3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 * 4 *
@@ -9,6 +9,8 @@
9 9
10#include "includes.h" 10#include "includes.h"
11 11
12#include <sys/types.h>
13#include <sys/param.h>
12#include "openbsd-compat/sys-queue.h" 14#include "openbsd-compat/sys-queue.h"
13#include <sys/resource.h> 15#include <sys/resource.h>
14#ifdef HAVE_SYS_TIME_H 16#ifdef HAVE_SYS_TIME_H
diff --git a/ssh-pkcs11-helper.c b/ssh-pkcs11-helper.c
index 0b1d8e4cc..d487f023b 100644
--- a/ssh-pkcs11-helper.c
+++ b/ssh-pkcs11-helper.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-pkcs11-helper.c,v 1.8 2014/06/24 01:13:21 djm Exp $ */ 1/* $OpenBSD: ssh-pkcs11-helper.c,v 1.9 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2010 Markus Friedl. All rights reserved. 3 * Copyright (c) 2010 Markus Friedl. All rights reserved.
4 * 4 *
@@ -18,6 +18,7 @@
18#include "includes.h" 18#include "includes.h"
19 19
20#include <sys/types.h> 20#include <sys/types.h>
21#include <sys/param.h>
21#ifdef HAVE_SYS_TIME_H 22#ifdef HAVE_SYS_TIME_H
22# include <sys/time.h> 23# include <sys/time.h>
23#endif 24#endif
diff --git a/sshconnect.c b/sshconnect.c
index f9a59372c..4b9681a5b 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.252 2014/12/04 02:24:32 djm Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.253 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -16,6 +16,7 @@
16#include "includes.h" 16#include "includes.h"
17 17
18#include <sys/types.h> 18#include <sys/types.h>
19#include <sys/param.h>
19#include <sys/wait.h> 20#include <sys/wait.h>
20#include <sys/stat.h> 21#include <sys/stat.h>
21#include <sys/socket.h> 22#include <sys/socket.h>
diff --git a/sshd.c b/sshd.c
index 481d00155..4e01855ca 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.428 2014/07/15 15:54:14 millert Exp $ */ 1/* $OpenBSD: sshd.c,v 1.429 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -45,6 +45,7 @@
45#include "includes.h" 45#include "includes.h"
46 46
47#include <sys/types.h> 47#include <sys/types.h>
48#include <sys/param.h>
48#include <sys/ioctl.h> 49#include <sys/ioctl.h>
49#include <sys/socket.h> 50#include <sys/socket.h>
50#ifdef HAVE_SYS_STAT_H 51#ifdef HAVE_SYS_STAT_H