summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Engler <me@emilengler.com>2020-05-02 08:38:17 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-02 12:02:13 +0200
commit8cf8b293a163fe6e2ffced798654ff6610a244b4 (patch)
treeb22c0fc47fbcdc3637fb65b5174cdeb9b383ed2c
parentdce30e2e07539e2a1f5c91bbef184b8f3b118c59 (diff)
downloadcurl-8cf8b293a163fe6e2ffced798654ff6610a244b4.tar.gz
KNOWN_BUGS: Remove "curl --upload-file . hang if delay in STDIN"
It was fixed in 9a2cbf3 Closes #5319
-rw-r--r--docs/KNOWN_BUGS13
1 files changed, 2 insertions, 11 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index 7bb276566..5b0c00881 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -43,8 +43,7 @@ problems may have been fixed or changed somewhat since this was written!
4.1 -J and -O with %-encoded file names
4.2 -J with -C - fails
4.3 --retry and transfer timeouts
- 4.4 --upload-file . hang if delay in STDIN
- 4.5 Improve --data-urlencode space encoding
+ 4.4 Improve --data-urlencode space encoding
5. Build and portability issues
5.2 curl-config --libs contains private details
@@ -337,15 +336,7 @@ problems may have been fixed or changed somewhat since this was written!
https://curl.haxx.se/mail/lib-2008-01/0080.html and Mandriva bug report
https://qa.mandriva.com/show_bug.cgi?id=22565
-4.4 --upload-file . hangs if delay in STDIN
-
- "(echo start; sleep 1; echo end) | curl --upload-file . http://mywebsite -vv"
-
- ... causes a hang when it shouldn't.
-
- See https://github.com/curl/curl/issues/2051
-
-4.5 Improve --data-urlencode space encoding
+4.4 Improve --data-urlencode space encoding
ASCII space characters in --data-urlencode are currently encoded as %20
rather than +, which RFC 1866 says should be used.