aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-11 15:15:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-11 15:15:25 +0000
commit203cc4a5c399dfd877d1dccaaaed81db2d1fc690 (patch)
treeef372582ca1d146922af20140387a3d26b8fb763
parentc7be232fee37f37842b9cca55f12c3423522c518 (diff)
two more known bugs
-rw-r--r--docs/KNOWN_BUGS9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index c9f31972d..0abf56478 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -3,6 +3,15 @@ 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!
+* libcurl doesn't treat the content-length of compressed data properly, as
+ it seems HTTP servers send the *uncompressed* length in that header and
+ libcurl thinks of it as the *compressed* lenght. Some explanations are here:
+ http://curl.haxx.se/mail/lib-2003-06/0146.html
+
+* Downloading 0 (zero) bytes files over FTP will not create a zero byte file
+ locally, which is because libcurl doesn't call the write callback with zero
+ bytes. Explained here: http://curl.haxx.se/mail/archive-2003-04/0143.html
+
* Using CURLOPT_FAILONERROR (-f/--fail) will make authentication to stop
working if you use anything but plain Basic auth.