- (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
   includes removed from includes.h
diff --git a/ChangeLog b/ChangeLog
index e2bedaa..c0a0a4e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -265,7 +265,8 @@
    [openbsd-compat/readpassphrase.c] Lots of include fixes for
    OpenSolaris
  - (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
-   warnings.
+ - (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
+   includes removed from includes.h
 
 20060313
  - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4167,4 +4168,4 @@
    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
 
-$Id: ChangeLog,v 1.4219 2006/03/15 05:04:18 tim Exp $
+$Id: ChangeLog,v 1.4220 2006/03/15 06:09:50 tim Exp $
diff --git a/openbsd-compat/port-tun.c b/openbsd-compat/port-tun.c
index 3192161..d09fe3d 100644
--- a/openbsd-compat/port-tun.c
+++ b/openbsd-compat/port-tun.c
@@ -16,6 +16,9 @@
 
 #include "includes.h"
 
+#include <sys/ioctl.h>
+#include <netinet/ip.h>
+
 #include "log.h"
 #include "misc.h"
 #include "bufaux.h"
diff --git a/sshpty.c b/sshpty.c
index 7cfcf91..7241580 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -17,6 +17,7 @@
 #include <sys/ioctl.h>
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <signal.h>
 
 #ifdef HAVE_PATHS_H
 # include <paths.h>