summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/port-tun.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f11e32bc..ba0b72033 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
4 Linuxes and probably more. 4 Linuxes and probably more.
5 - (dtucker) [configure.ac] OpenBSD needs <sys/types.h> before <sys/socket.h> 5 - (dtucker) [configure.ac] OpenBSD needs <sys/types.h> before <sys/socket.h>
6 for SHUT_RD. 6 for SHUT_RD.
7 - (dtucker) [openbsd-compat/port-tun.c] OpenBSD needs <netinet/in.h> before
8 <netinet/ip.h>.
7 9
820060711 1020060711
9 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 11 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@@ -4853,4 +4855,4 @@
4853 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4855 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4854 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4856 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4855 4857
4856$Id: ChangeLog,v 1.4390 2006/07/12 09:02:56 dtucker Exp $ 4858$Id: ChangeLog,v 1.4391 2006/07/12 09:05:56 dtucker Exp $
diff --git a/openbsd-compat/port-tun.c b/openbsd-compat/port-tun.c
index a87b809d5..bee6b160c 100644
--- a/openbsd-compat/port-tun.c
+++ b/openbsd-compat/port-tun.c
@@ -18,6 +18,7 @@
18 18
19#include <sys/types.h> 19#include <sys/types.h>
20#include <sys/ioctl.h> 20#include <sys/ioctl.h>
21#include <netinet/in.h>
21#include <netinet/ip.h> 22#include <netinet/ip.h>
22 23
23#include <fcntl.h> 24#include <fcntl.h>