diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-03-13 21:43:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-03-13 21:43:39 +0000 |
commit | 641d5c411198b7c9adb35cf4e0aea77846be3680 (patch) | |
tree | c59e4e825c75c44ba3760917c7036976420b96b4 /RELEASE-NOTES | |
parent | ad4a9955c5f62d164a78b9847fe9e8207aadb617 (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 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 8dccd0d48..02d4c36ed 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -44,6 +44,7 @@ This release includes the following bugfixes: o SFTP non-existing file + SFTP existing file error o sharing DNS cache between easy handles running in multiple threads could lead to crash + o SFTP upload with CURLOPT_FTP_CREATE_MISSING_DIRS on re-used connection This release includes the following known bugs: |