aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorTor Arntsen <tor@spacetec.no>2010-05-27 16:58:15 +0200
committerKamil Dudka <kdudka@redhat.com>2010-05-27 18:15:17 +0200
commitb4f0e1291f2095d4d2be0842ddfcd57895c750a6 (patch)
treed0f171b6cdd9e6b1a4da5adc18f090f6a6f3648e /CHANGES
parentdd8568739c2b67ad069d59a8afcce9e6d3305d5f (diff)
setup_once: use enum type for 'bool' on non-C99 platforms
An enum will catch non-bool assignments to bool on platforms with a strict compiler, e.g MIPSPro. Signed-off-by: Kamil Dudka <kdudka@redhat.com>
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index a62ca57ae..efea35ca5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,13 +6,17 @@
Changelog
+Kamil Dudka (27 May 2010)
+- Tor Arntsen changed the alternative definition of bool to use enum instead
+ of unsigned char.
+
+Daniel Stenberg (25 May 2010)
- Julien Chaffraix fixed the warning seen when compiling lib/rtmp.c: one
unused variables, several unused arguments and some missing #include.
- Julien Chaffraix fixed 2 OOM errors: a missing NULL-check in
lib/http_negociate.c and a potential NULL dereferencing in lib/splay.c
-Daniel Stenberg (25 May 2010)
- Howard Chu brought a patch that makes the LDAP code much cleaner, nicer and
in general being a better libcurl citizen. If a new enough OpenLDAP version
is detect, the new and shiny lib/openldap.c code is then used instead of the