aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-09-22 17:20:29 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-09-22 17:20:29 +0000
commitabe61b99261902d58ec72742ea932c580b458d26 (patch)
tree3d88c03d6699d9107945a0e606a872333d78537e /CHANGES
parent54e49d10d2d47fae72472e27d97891b1de5451ae (diff)
Fixed test 539 to handle an out of memory condition that shows up now
that memdebug.h is included in the test programs.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index efc64d9da..81045003b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,10 @@
Changelog
+Daniel Fandrich (22 Sep 2008)
+- Fixed test 539 to handle an out of memory condition that shows up now
+ that memdebug.h is included in the test programs.
+
Yang Tse (20 Sep 2008)
- Fix regression in configure script which affected OpenSSL builds on MSYS.
@@ -68,14 +72,15 @@ Daniel Stenberg (8 Sep 2008)
the cookie to not match.
Daniel Fandrich (5 Sep 2008)
-- Improved the logic the decides whether to use HTTP 1.1 features or not in a
+- Improved the logic that decides whether to use HTTP 1.1 features or not in a
request. Setting a specific version with CURLOPT_HTTP_VERSION overrides
all other checks, but otherwise, a 1.0 request will be made if the server
is known to support only 1.0 because it previously responded so and the
connection was kept alive, or a response to a previous request on this handle
came back as 1.0. The latter could take place in cases like redirection or
authentication where several requests have to be made before the operation
- is complete.
+ is complete. If any one of the servers in a redirection chain supports only
+ 1.0, then remaining requests will be sent in 1.0 mode.
- Detect cases where an upload must be sent chunked and the server supports
only HTTP 1.0 and return CURLE_UPLOAD_FAILED.