summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--canohost.c1
-rw-r--r--packet.c1
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a51117c88..f26dae2fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120060922
2 - (dtucker) [packet.c canohost.c] Include arpa/inet.h for htonl macros on
3 some platforms (eg HP-UX 11.00). From santhi.amirta at gmail com.
4
120060921 520060921
2 - (dtucker) OpenBSD CVS Sync 6 - (dtucker) OpenBSD CVS Sync
3 - otto@cvs.openbsd.org 2006/09/19 05:52:23 7 - otto@cvs.openbsd.org 2006/09/19 05:52:23
@@ -5470,4 +5474,4 @@
5470 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5474 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5471 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5475 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5472 5476
5473$Id: ChangeLog,v 1.4555 2006/09/21 13:13:30 dtucker Exp $ 5477$Id: ChangeLog,v 1.4556 2006/09/22 09:22:17 dtucker Exp $
diff --git a/canohost.c b/canohost.c
index dd3972e8d..2345cc35c 100644
--- a/canohost.c
+++ b/canohost.c
@@ -18,6 +18,7 @@
18#include <sys/socket.h> 18#include <sys/socket.h>
19 19
20#include <netinet/in.h> 20#include <netinet/in.h>
21#include <arpa/inet.h>
21 22
22#include <ctype.h> 23#include <ctype.h>
23#include <errno.h> 24#include <errno.h>
diff --git a/packet.c b/packet.c
index 6d58ebc0a..ab5a01002 100644
--- a/packet.c
+++ b/packet.c
@@ -50,6 +50,7 @@
50#include <netinet/in_systm.h> 50#include <netinet/in_systm.h>
51#include <netinet/in.h> 51#include <netinet/in.h>
52#include <netinet/ip.h> 52#include <netinet/ip.h>
53#include <arpa/inet.h>
53 54
54#include <errno.h> 55#include <errno.h>
55#include <stdarg.h> 56#include <stdarg.h>