]> andersk Git - openssh.git/commitdiff
- (dtucker) [ssh-keyscan.c ssh-rand-helper.c ssh.c sshconnect.c
authordtucker <dtucker>
Sat, 2 Sep 2006 05:32:40 +0000 (05:32 +0000)
committerdtucker <dtucker>
Sat, 2 Sep 2006 05:32:40 +0000 (05:32 +0000)
   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.

ChangeLog
openbsd-compat/bindresvport.c
openbsd-compat/getrrsetbyname.c
openbsd-compat/port-tun.c
openbsd-compat/rresvport.c
ssh-keyscan.c
ssh-rand-helper.c
ssh.c
sshconnect.c

index bed4148b9d18a3d56b780a83b1ee8af3b2e7acef..44701630cc50aaa5a777a392b60111ca9aeca22d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
index e8fb83f23d7af1a3e9278f0c15376ed3c9e7832f..65afed1e34563921b0c55ff87c187582924b1404 100644 (file)
@@ -37,6 +37,7 @@
 #include <sys/socket.h>
 
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
 #include <errno.h>
 #include <string.h>
index 40155d5abf0db7eb01886a37b347fbba2c38efee..6c86e02c2ab0805dbe8c7629ba47bf3b0d9b0a96 100644 (file)
@@ -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
index cadc331e1a27996f98049b04fdf9cb4a17873cb9..276474db87cd970400d15b5731393172b892ed18 100644 (file)
@@ -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>
index 17e66ca596b81cbcb25d04394cc47424717a6e78..5b0275ce06320e008cac39f0cc12a28ea35ca6af 100644 (file)
@@ -39,6 +39,7 @@
 #include <sys/socket.h>
 
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
 #include <errno.h>
 #include <stdlib.h>
index 64d4d0870363b363d568a9e85f5d69d7cb392e91..416d3f5c14d792676d57784bc4b0b5905fec8f54 100644 (file)
@@ -15,6 +15,9 @@
 # include <sys/time.h>
 #endif
 
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
 #include <openssl/bn.h>
 
 #include <netdb.h>
index 10c9905b121de1460002f15e9d7187b083b6e5ab..8520c3a62ee573396ddf36ee86bfb925a7f259f2 100644 (file)
@@ -34,6 +34,7 @@
 #include <stddef.h>
 
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
 #ifdef HAVE_SYS_UN_H
 # include <sys/un.h>
diff --git a/ssh.c b/ssh.c
index a34990b54c878b87c0e94a65a051b20c33d83c85..efc4af6d436830be00ee8e8ac5c25628e9217665 100644 (file)
--- a/ssh.c
+++ b/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>
 
index 823def6a9f020d4acc32f3deaa9fd80b008dd14c..a7a4e8a9691b8c5955b3a037df7ba7287e1ab080 100644 (file)
@@ -24,6 +24,7 @@
 #endif
 
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
 #include <ctype.h>
 #include <errno.h>
This page took 0.142566 seconds and 5 git commands to generate.