summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-12 19:05:56 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-07-12 19:05:56 +1000
commit686852f665376c2287c716f8d388b42c1727210b (patch)
tree2073f9903efca4b6995502b507c2b32247c05ac5
parent128a0894a5ec604572f2acc34f016f8f144b9780 (diff)
- (dtucker) [openbsd-compat/port-tun.c] OpenBSD needs <netinet/in.h> before
<netinet/ip.h>.
-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 1f11e32b..ba0b7203 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
Linuxes and probably more.
- (dtucker) [configure.ac] OpenBSD needs <sys/types.h> before <sys/socket.h>
for SHUT_RD.
+ - (dtucker) [openbsd-compat/port-tun.c] OpenBSD needs <netinet/in.h> before
+ <netinet/ip.h>.
20060711
- (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@@ -4853,4 +4855,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.4390 2006/07/12 09:02:56 dtucker Exp $
+$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 a87b809d..bee6b160 100644
--- a/openbsd-compat/port-tun.c
+++ b/openbsd-compat/port-tun.c
@@ -18,6 +18,7 @@
#include <sys/types.h>
#include <sys/ioctl.h>
+#include <netinet/in.h>
#include <netinet/ip.h>
#include <fcntl.h>