summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
commit9cf6d077fb87b4364e70c9fd889bf26744718301 (patch)
tree723b1647b10a98e1289922ac1a1eef66d51339c6 /sshd.c
parent17e91c0fb01787f9a5974a997bb26114a435dde7 (diff)
downloadopenssh-git-9cf6d077fb87b4364e70c9fd889bf26744718301.tar.gz
- stevesk@cvs.openbsd.org 2006/02/10 01:44:27
[includes.h monitor.c readpass.c scp.c serverloop.c session.c^?] [sftp.c sshconnect.c sshconnect2.c sshd.c] move #include <sys/wait.h> out of includes.h; ok markus@
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 3bf48972..8a68a537 100644
--- a/sshd.c
+++ b/sshd.c
@@ -42,9 +42,11 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.320 2006/02/10 00:27:13 stevesk Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.321 2006/02/10 01:44:27 stevesk Exp $");
#include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/wait.h>
#include <paths.h>