diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | openbsd-compat/bsd-asprintf.c | 3 | ||||
-rw-r--r-- | openbsd-compat/port-aix.c | 1 | ||||
-rw-r--r-- | openbsd-compat/rresvport.c | 2 |
4 files changed, 10 insertions, 1 deletions
@@ -61,6 +61,9 @@ | |||
61 | - (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h. | 61 | - (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h. |
62 | - (dtucker) [ssh-keyscan.c ssh-rand-helper.c] More errno.h here too. | 62 | - (dtucker) [ssh-keyscan.c ssh-rand-helper.c] More errno.h here too. |
63 | - (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h. | 63 | - (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h. |
64 | - (dtucker) [openbsd-compat/bsd-asprintf.c openbsd-compat/port-aix.c | ||
65 | openbsd-compat/rresvport.c] More errno.h. | ||
66 | |||
64 | 67 | ||
65 | 20060711 | 68 | 20060711 |
66 | - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c | 69 | - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c |
@@ -4910,4 +4913,4 @@ | |||
4910 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 4913 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
4911 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 4914 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
4912 | 4915 | ||
4913 | $Id: ChangeLog,v 1.4405 2006/07/12 13:10:33 dtucker Exp $ | 4916 | $Id: ChangeLog,v 1.4406 2006/07/12 13:41:33 dtucker Exp $ |
diff --git a/openbsd-compat/bsd-asprintf.c b/openbsd-compat/bsd-asprintf.c index 5ca01f80f..1178296f8 100644 --- a/openbsd-compat/bsd-asprintf.c +++ b/openbsd-compat/bsd-asprintf.c | |||
@@ -21,6 +21,9 @@ | |||
21 | 21 | ||
22 | #ifndef HAVE_VASPRINTF | 22 | #ifndef HAVE_VASPRINTF |
23 | 23 | ||
24 | #include <errno.h> | ||
25 | #include <stdarg.h> | ||
26 | |||
24 | #ifndef VA_COPY | 27 | #ifndef VA_COPY |
25 | # ifdef HAVE_VA_COPY | 28 | # ifdef HAVE_VA_COPY |
26 | # define VA_COPY(dest, src) va_copy(dest, src) | 29 | # define VA_COPY(dest, src) va_copy(dest, src) |
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c index 81d8124e0..33be00c2b 100644 --- a/openbsd-compat/port-aix.c +++ b/openbsd-compat/port-aix.c | |||
@@ -33,6 +33,7 @@ | |||
33 | 33 | ||
34 | #ifdef _AIX | 34 | #ifdef _AIX |
35 | 35 | ||
36 | #include <errno.h> | ||
36 | #include <uinfo.h> | 37 | #include <uinfo.h> |
37 | #include <sys/socket.h> | 38 | #include <sys/socket.h> |
38 | #include "port-aix.h" | 39 | #include "port-aix.h" |
diff --git a/openbsd-compat/rresvport.c b/openbsd-compat/rresvport.c index 71cf6e6eb..fc029f46f 100644 --- a/openbsd-compat/rresvport.c +++ b/openbsd-compat/rresvport.c | |||
@@ -35,6 +35,8 @@ | |||
35 | 35 | ||
36 | #ifndef HAVE_RRESVPORT_AF | 36 | #ifndef HAVE_RRESVPORT_AF |
37 | 37 | ||
38 | #include <errno.h> | ||
39 | |||
38 | #if 0 | 40 | #if 0 |
39 | int | 41 | int |
40 | rresvport(int *alport) | 42 | rresvport(int *alport) |