summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--roaming_client.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 65bbdd6bc..9e8b41017 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
2 - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't 2 - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
3 have it. 3 have it.
4 - (dtucker) [defines.h] define PRIu64 for platforms that don't have it. 4 - (dtucker) [defines.h] define PRIu64 for platforms that don't have it.
5 - (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef.
5 6
620091208 720091208
7 - (dtucker) OpenBSD CVS Sync 8 - (dtucker) OpenBSD CVS Sync
diff --git a/roaming_client.c b/roaming_client.c
index cfa57f613..c80db5826 100644
--- a/roaming_client.c
+++ b/roaming_client.c
@@ -21,7 +21,9 @@
21#include <sys/types.h> 21#include <sys/types.h>
22#include <sys/socket.h> 22#include <sys/socket.h>
23 23
24#ifdef HAVE_INTTYPES_H
24#include <inttypes.h> 25#include <inttypes.h>
26#endif
25#include <signal.h> 27#include <signal.h>
26#include <string.h> 28#include <string.h>
27#include <unistd.h> 29#include <unistd.h>