summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
commitf17883e6a0f9462c8bc163cce44331862581b0cb (patch)
tree3e298f6761b40b7be32c76f529f92b1f276cb329 /sshd.c
parent574c41fdb3ff4b8eb7f121b05a08f2415ec7efec (diff)
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c] [serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c] move #include <signal.h> out of includes.h; ok markus@
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 8a68a537b..f06b41188 100644
--- a/sshd.c
+++ b/sshd.c
@@ -42,10 +42,13 @@
42 */ 42 */
43 43
44#include "includes.h" 44#include "includes.h"
45RCSID("$OpenBSD: sshd.c,v 1.321 2006/02/10 01:44:27 stevesk Exp $"); 45RCSID("$OpenBSD: sshd.c,v 1.323 2006/02/20 17:19:54 stevesk Exp $");
46 46
47#include <sys/ioctl.h>
48#include <sys/types.h> 47#include <sys/types.h>
48#ifdef HAVE_SYS_STAT_H
49# include <sys/stat.h>
50#endif
51#include <sys/ioctl.h>
49#include <sys/wait.h> 52#include <sys/wait.h>
50 53
51#include <paths.h> 54#include <paths.h>