aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-04-16 15:33:10 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-04-16 15:33:10 +0200
commit0338994c6a827cba8a7fc2a98b949c7b8b59b156 (patch)
tree0b57e2c1ce7381039fdffadc9f0ec81f8f858b32 /CHANGES
parent2056ca9fea49558d5967a045955ade01cbcccad9 (diff)
changelog: GnuTLS fix, no reverse loopkups and fixed GSS detection
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 51efabc7e..be2bf0425 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,20 @@
Changelog
+Daniel Stenberg (16 Apr 2010)
+- The recent overhaul of the SSL recv function made the GnuTLS specific code
+ treat a zero returned from gnutls_record_recv() as an error, and this caused
+ our HTTPS test cases to fail. We leave it to upper layer code to detect if
+ an EOF is a problem or not.
+
+- I reverted the resolver fix from yesterday and instead removed all uses of
+ AI_CANONNAME all over libcurl and made the only user of that info (krb5.c)
+ use the host name from the URL instead. No reverse resolving is a good
+ thing.
+
+- Paul Howarth made configure properly detect GSS "on ancient Linux distros"
+ by editing in which order we use headers to detect GSS.
+
Daniel Stenberg (15 Apr 2010)
- Rainer Canavan filed bug report #2987196 that identified libcurl doing
unnecesary reverse name lookups in many cases when built to use IPv4 and