]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
57. On VMS-Alpha: When using an http-file-upload the file is not sent to the
authorDaniel Stenberg <daniel@haxx.se>
Thu, 21 Aug 2008 18:28:58 +0000 (18:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 21 Aug 2008 18:28:58 +0000 (18:28 +0000)
  Server with the correct content-length.  Sending a file with 511 or less
  bytes, content-length 512 is used.  Sending a file with 513 - 1023 bytes,
  content-length 1024 is used.  Files with a length of a multiple of 512 Bytes
  show the correct content-length. Only these files work for upload.
  http://curl.haxx.se/bug/view.cgi?id=2057858

docs/KNOWN_BUGS

index bb9cbbe2ea747f306bd685144f5cb1247cd28e17..834768125c06efe670816b5d56e79ca5110ba20c 100644 (file)
@@ -3,6 +3,13 @@ join in and help us correct one or more of these! Also be sure to check the
 changelog of the current development status, as one or more of these problems
 may have been fixed since this was written!
 
+57. On VMS-Alpha: When using an http-file-upload the file is not sent to the
+  Server with the correct content-length.  Sending a file with 511 or less
+  bytes, content-length 512 is used.  Sending a file with 513 - 1023 bytes,
+  content-length 1024 is used.  Files with a length of a multiple of 512 Bytes
+  show the correct content-length. Only these files work for upload.
+  http://curl.haxx.se/bug/view.cgi?id=2057858
+
 56. When libcurl sends CURLOPT_POSTQUOTE commands when connected to a SFTP
   server using the multi interface, the commands are not being sent correctly
   and instead the connection is "cancelled" (the operation is considered done)