- (dtucker) [ssh-keyscan.c ssh-rand-helper.c ssh.c sshconnect.c
openbsd-compat/bindresvport.c openbsd-compat/getrrsetbyname.c openbsd-compat/port-tun.c openbsd-compat/rresvport.c] Include <arpa/inet.h> for hton* and ntoh* macros. Required on (at least) HP-UX since we define _XOPEN_SOURCE_EXTENDED. Found by santhi.amirta at gmail com.
This commit is contained in:
parent
25fa0ee693
commit
46aa3e0ce1
|
@ -1,5 +1,10 @@
|
|||
20060902
|
||||
- (dtucker) [openbsd-compat/port-irix.c] Add errno.h, found by Iain Morgan.
|
||||
- (dtucker) [ssh-keyscan.c ssh-rand-helper.c ssh.c sshconnect.c
|
||||
openbsd-compat/bindresvport.c openbsd-compat/getrrsetbyname.c
|
||||
openbsd-compat/port-tun.c openbsd-compat/rresvport.c] Include <arpa/inet.h>
|
||||
for hton* and ntoh* macros. Required on (at least) HP-UX since we define
|
||||
_XOPEN_SOURCE_EXTENDED. Found by santhi.amirta at gmail com.
|
||||
|
||||
20060901
|
||||
- (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c]
|
||||
|
@ -5380,4 +5385,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.4526 2006/09/02 02:38:56 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4527 2006/09/02 05:32:40 dtucker Exp $
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include <sys/socket.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -52,6 +52,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include "getrrsetbyname.h"
|
||||
|
||||
#if defined(HAVE_DECL_H_ERRNO) && !HAVE_DECL_H_ERRNO
|
||||
|
|
|
@ -18,7 +18,9 @@
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netinet/ip.h>
|
||||
|
||||
#include <errno.h>
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
#include <sys/socket.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
# include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <openssl/bn.h>
|
||||
|
||||
#include <netdb.h>
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include <stddef.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#ifdef HAVE_SYS_UN_H
|
||||
# include <sys/un.h>
|
||||
|
|
3
ssh.c
3
ssh.c
|
@ -67,6 +67,9 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/err.h>
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#endif
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
|
Loading…
Reference in New Issue