- 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.
This commit is contained in:
Daniel Stenberg
2008-03-13 21:43:39 +00:00
parent ad4a9955c5
commit 641d5c4111
2 changed files with 12 additions and 1 deletions

View File

@@ -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: