- (dtucker) [packet.c canohost.c] Include arpa/inet.h for htonl macros on

some platforms (eg HP-UX 11.00).  From santhi.amirta at gmail com.
This commit is contained in:
Darren Tucker 2006-09-22 19:22:17 +10:00
parent 0dc5484ca6
commit dace233d70
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
20060922
- (dtucker) [packet.c canohost.c] Include arpa/inet.h for htonl macros on
some platforms (eg HP-UX 11.00). From santhi.amirta at gmail com.
20060921 20060921
- (dtucker) OpenBSD CVS Sync - (dtucker) OpenBSD CVS Sync
- otto@cvs.openbsd.org 2006/09/19 05:52:23 - otto@cvs.openbsd.org 2006/09/19 05:52:23
@ -5470,4 +5474,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4555 2006/09/21 13:13:30 dtucker Exp $ $Id: ChangeLog,v 1.4556 2006/09/22 09:22:17 dtucker Exp $

View File

@ -18,6 +18,7 @@
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h>
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>

View File

@ -50,6 +50,7 @@
#include <netinet/in_systm.h> #include <netinet/in_systm.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <netinet/ip.h> #include <netinet/ip.h>
#include <arpa/inet.h>
#include <errno.h> #include <errno.h>
#include <stdarg.h> #include <stdarg.h>