aboutsummaryrefslogtreecommitdiff
path: root/docs/KNOWN_BUGS
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-12-15 23:38:37 +0100
committerDaniel Stenberg <daniel@haxx.se>2013-12-15 23:38:37 +0100
commit8a8f9a5d5775ea58807b3c3ff86a9b96ae4b0925 (patch)
tree04613dae390589177540e56d88755f117cd3c2ba /docs/KNOWN_BUGS
parentbe28223f350ebd5a07de86d28b98a129952ccc60 (diff)
curl.1 document -J doesn't %-decode
...also added as KNOWN_BUG #87 with reference to bug #1294
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r--docs/KNOWN_BUGS8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index aa39b8082..e838fefdc 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -3,6 +3,14 @@ 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!
+87. -J/--remote-header-name doesn't decode %-encoded file names. RFC6266
+ details how it should be done. The can of worm is basically that we have no
+ charset handling in curl and ascii >=128 is a challenge for us. Not to
+ mention that decoding also means that we need to check for nastyness that is
+ attempted, like "../" sequences and the like. Probably everything to the left
+ of any embedded slashes should be cut off.
+ http://curl.haxx.se/bug/view.cgi?id=1294
+
86. The disconnect commands (LOGOUT and QUIT) may not be sent by IMAP, POP3
and SMTP if a failure occures during the authentication phase of a
connection.