diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | openbsd-compat/bindresvport.c | 1 | ||||
-rw-r--r-- | openbsd-compat/getrrsetbyname.c | 3 | ||||
-rw-r--r-- | openbsd-compat/port-tun.c | 2 | ||||
-rw-r--r-- | openbsd-compat/rresvport.c | 1 | ||||
-rw-r--r-- | ssh-keyscan.c | 3 | ||||
-rw-r--r-- | ssh-rand-helper.c | 1 | ||||
-rw-r--r-- | ssh.c | 3 | ||||
-rw-r--r-- | sshconnect.c | 1 |
9 files changed, 21 insertions, 1 deletions
@@ -1,5 +1,10 @@ | |||
1 | 20060902 | 1 | 20060902 |
2 | - (dtucker) [openbsd-compat/port-irix.c] Add errno.h, found by Iain Morgan. | 2 | - (dtucker) [openbsd-compat/port-irix.c] Add errno.h, found by Iain Morgan. |
3 | - (dtucker) [ssh-keyscan.c ssh-rand-helper.c ssh.c sshconnect.c | ||
4 | openbsd-compat/bindresvport.c openbsd-compat/getrrsetbyname.c | ||
5 | openbsd-compat/port-tun.c openbsd-compat/rresvport.c] Include <arpa/inet.h> | ||
6 | for hton* and ntoh* macros. Required on (at least) HP-UX since we define | ||
7 | _XOPEN_SOURCE_EXTENDED. Found by santhi.amirta at gmail com. | ||
3 | 8 | ||
4 | 20060901 | 9 | 20060901 |
5 | - (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c] | 10 | - (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c] |
@@ -5380,4 +5385,4 @@ | |||
5380 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5385 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5381 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5386 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5382 | 5387 | ||
5383 | $Id: ChangeLog,v 1.4526 2006/09/02 02:38:56 dtucker Exp $ | 5388 | $Id: ChangeLog,v 1.4527 2006/09/02 05:32:40 dtucker Exp $ |
diff --git a/openbsd-compat/bindresvport.c b/openbsd-compat/bindresvport.c index e8fb83f23..65afed1e3 100644 --- a/openbsd-compat/bindresvport.c +++ b/openbsd-compat/bindresvport.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <sys/socket.h> | 37 | #include <sys/socket.h> |
38 | 38 | ||
39 | #include <netinet/in.h> | 39 | #include <netinet/in.h> |
40 | #include <arpa/inet.h> | ||
40 | 41 | ||
41 | #include <errno.h> | 42 | #include <errno.h> |
42 | #include <string.h> | 43 | #include <string.h> |
diff --git a/openbsd-compat/getrrsetbyname.c b/openbsd-compat/getrrsetbyname.c index 40155d5ab..6c86e02c2 100644 --- a/openbsd-compat/getrrsetbyname.c +++ b/openbsd-compat/getrrsetbyname.c | |||
@@ -52,6 +52,9 @@ | |||
52 | #include <stdlib.h> | 52 | #include <stdlib.h> |
53 | #include <string.h> | 53 | #include <string.h> |
54 | 54 | ||
55 | #include <netinet/in.h> | ||
56 | #include <arpa/inet.h> | ||
57 | |||
55 | #include "getrrsetbyname.h" | 58 | #include "getrrsetbyname.h" |
56 | 59 | ||
57 | #if defined(HAVE_DECL_H_ERRNO) && !HAVE_DECL_H_ERRNO | 60 | #if defined(HAVE_DECL_H_ERRNO) && !HAVE_DECL_H_ERRNO |
diff --git a/openbsd-compat/port-tun.c b/openbsd-compat/port-tun.c index cadc331e1..276474db8 100644 --- a/openbsd-compat/port-tun.c +++ b/openbsd-compat/port-tun.c | |||
@@ -18,7 +18,9 @@ | |||
18 | 18 | ||
19 | #include <sys/types.h> | 19 | #include <sys/types.h> |
20 | #include <sys/ioctl.h> | 20 | #include <sys/ioctl.h> |
21 | |||
21 | #include <netinet/in.h> | 22 | #include <netinet/in.h> |
23 | #include <arpa/inet.h> | ||
22 | #include <netinet/ip.h> | 24 | #include <netinet/ip.h> |
23 | 25 | ||
24 | #include <errno.h> | 26 | #include <errno.h> |
diff --git a/openbsd-compat/rresvport.c b/openbsd-compat/rresvport.c index 17e66ca59..5b0275ce0 100644 --- a/openbsd-compat/rresvport.c +++ b/openbsd-compat/rresvport.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <sys/socket.h> | 39 | #include <sys/socket.h> |
40 | 40 | ||
41 | #include <netinet/in.h> | 41 | #include <netinet/in.h> |
42 | #include <arpa/inet.h> | ||
42 | 43 | ||
43 | #include <errno.h> | 44 | #include <errno.h> |
44 | #include <stdlib.h> | 45 | #include <stdlib.h> |
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 64d4d0870..416d3f5c1 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c | |||
@@ -15,6 +15,9 @@ | |||
15 | # include <sys/time.h> | 15 | # include <sys/time.h> |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #include <netinet/in.h> | ||
19 | #include <arpa/inet.h> | ||
20 | |||
18 | #include <openssl/bn.h> | 21 | #include <openssl/bn.h> |
19 | 22 | ||
20 | #include <netdb.h> | 23 | #include <netdb.h> |
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c index 10c9905b1..8520c3a62 100644 --- a/ssh-rand-helper.c +++ b/ssh-rand-helper.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <stddef.h> | 34 | #include <stddef.h> |
35 | 35 | ||
36 | #include <netinet/in.h> | 36 | #include <netinet/in.h> |
37 | #include <arpa/inet.h> | ||
37 | 38 | ||
38 | #ifdef HAVE_SYS_UN_H | 39 | #ifdef HAVE_SYS_UN_H |
39 | # include <sys/un.h> | 40 | # include <sys/un.h> |
@@ -67,6 +67,9 @@ | |||
67 | #include <string.h> | 67 | #include <string.h> |
68 | #include <unistd.h> | 68 | #include <unistd.h> |
69 | 69 | ||
70 | #include <netinet/in.h> | ||
71 | #include <arpa/inet.h> | ||
72 | |||
70 | #include <openssl/evp.h> | 73 | #include <openssl/evp.h> |
71 | #include <openssl/err.h> | 74 | #include <openssl/err.h> |
72 | 75 | ||
diff --git a/sshconnect.c b/sshconnect.c index 823def6a9..a7a4e8a96 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | #include <netinet/in.h> | 26 | #include <netinet/in.h> |
27 | #include <arpa/inet.h> | ||
27 | 28 | ||
28 | #include <ctype.h> | 29 | #include <ctype.h> |
29 | #include <errno.h> | 30 | #include <errno.h> |