diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | roaming_common.c | 4 | ||||
-rw-r--r-- | roaming_dummy.c | 2 |
3 files changed, 8 insertions, 0 deletions
@@ -108,6 +108,8 @@ | |||
108 | - (dtucker) [auth2-jpake.c auth2.c canohost.h session.c] Whitespace and | 108 | - (dtucker) [auth2-jpake.c auth2.c canohost.h session.c] Whitespace and |
109 | header-order changes to reduce diff vs OpenBSD. | 109 | header-order changes to reduce diff vs OpenBSD. |
110 | - (dtucker) [servconf.c sshd.c] More whitespace sync. | 110 | - (dtucker) [servconf.c sshd.c] More whitespace sync. |
111 | - (dtucker) [roaming_common.c roaming_dummy.c] Wrap #include <inttypes.h> in | ||
112 | ifdef. | ||
111 | 113 | ||
112 | 20090616 | 114 | 20090616 |
113 | - (dtucker) [configure.ac defines.h] Bug #1607: handle the case where fsid_t | 115 | - (dtucker) [configure.ac defines.h] Bug #1607: handle the case where fsid_t |
diff --git a/roaming_common.c b/roaming_common.c index 065542520..14dd5808f 100644 --- a/roaming_common.c +++ b/roaming_common.c | |||
@@ -15,12 +15,16 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include "includes.h" | ||
19 | |||
18 | #include <sys/types.h> | 20 | #include <sys/types.h> |
19 | #include <sys/socket.h> | 21 | #include <sys/socket.h> |
20 | #include <sys/uio.h> | 22 | #include <sys/uio.h> |
21 | 23 | ||
22 | #include <errno.h> | 24 | #include <errno.h> |
25 | #ifdef HAVE_INTTYPES_H | ||
23 | #include <inttypes.h> | 26 | #include <inttypes.h> |
27 | #endif | ||
24 | #include <stdarg.h> | 28 | #include <stdarg.h> |
25 | #include <unistd.h> | 29 | #include <unistd.h> |
26 | 30 | ||
diff --git a/roaming_dummy.c b/roaming_dummy.c index f081bffe9..45c4008e7 100644 --- a/roaming_dummy.c +++ b/roaming_dummy.c | |||
@@ -20,6 +20,8 @@ | |||
20 | * support roaming. | 20 | * support roaming. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "includes.h" | ||
24 | |||
23 | #include <sys/types.h> | 25 | #include <sys/types.h> |
24 | #include <unistd.h> | 26 | #include <unistd.h> |
25 | 27 | ||