summaryrefslogtreecommitdiff
path: root/lib/ChangeLog
diff options
context:
space:
mode:
authorpaul <paul>2005-11-24 12:51:24 +0000
committerpaul <paul>2005-11-24 12:51:24 +0000
commitb6026073584b855d47a8e2033d2aa3413a3394e9 (patch)
treeacc8812673bc85302da33007549e7828e2a23877 /lib/ChangeLog
parent6e0f1b940dc281863ef9d9f3bd57676927b8603f (diff)
[lib/zebra.h] fix Linux compile error
2005-11-24 Paul Jakma <paul.jakma@sun.com> * zebra.h: s/u_int/unsigned int/, u_int is a BSD type, defining __USE_BSD on Linux pulls in further things from netinet/ip.h which dont preprocess for some reason. There is no C99 shorthand type directly equivalent to u_int afaict, so don't use it.
Diffstat (limited to 'lib/ChangeLog')
-rw-r--r--lib/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 7e485635..e1f4118f 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -3,6 +3,11 @@
* privs.c: (zcaps2sys/solaris) remove unused variable.
(zprivs_state_caps/solaris) Format string missing a
specifier.
+ * zebra.h: s/u_int/unsigned int/, u_int is a BSD type, defining
+ __USE_BSD on Linux pulls in further things from netinet/ip.h
+ which dont preprocess for some reason. There is no C99
+ shorthand type directly equivalent to u_int afaict, so don't
+ use it.
2005-11-14 Paul Jakma <paul.jakma@sun.com>