aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-03-13 21:43:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-03-13 21:43:39 +0000
commit641d5c411198b7c9adb35cf4e0aea77846be3680 (patch)
treec59e4e825c75c44ba3760917c7036976420b96b4 /CHANGES
parentad4a9955c5f62d164a78b9847fe9e8207aadb617 (diff)
- Brian Ulm figured out that if you did an SFTP upload with
CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the handle and uploaded another file to another directory that needed to be created, the second upload would fail. Another case of a state variable that wasn't properly reset between requests. - I rewrote the 100-continue code to use a single state variable instead of the previous two ones. I think it made the logic somewhat clearer.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 5f62bcafc..0ac0f9544 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,16 @@
Changelog
+Daniel Stenberg (13 Mar 2008)
+- Brian Ulm figured out that if you did an SFTP upload with
+ CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the
+ handle and uploaded another file to another directory that needed to be
+ created, the second upload would fail. Another case of a state variable that
+ wasn't properly reset between requests.
+
+- I rewrote the 100-continue code to use a single state variable instead of
+ the previous two ones. I think it made the logic somewhat clearer.
+
Daniel Stenberg (11 Mar 2008)
- Dmitry Popov filed bug report #1911069
(http://curl.haxx.se/bug/view.cgi?id=1911069) that identified a race
@@ -34,7 +44,7 @@ Daniel Stenberg (9 Mar 2008)
- Brian Ulm reported that if you first tried to download a non-existing SFTP
file and then fetched an existing one and re-used the handle, libcurl would
- still report the second one as non-existing as well! I fixed it abd Brian
+ still report the second one as non-existing as well! I fixed it and Brian
verified that it cured his problem.
Michal Marek (6 Mar 2008)