diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-10-08 10:39:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-10-08 10:39:43 +0000 |
commit | 08cf6780ba8ea242cb451f07e14bb572079e22cf (patch) | |
tree | 84ff8b08fde25d6d5334d62bdd9c2dbc713ccac1 /docs/KNOWN_BUGS | |
parent | 6814907a2c3ce7b90cdd509f0dfca009e1ca228f (diff) |
- Igor Novoseltsev brought a patch that introduced two new options to
curl_easy_setopt: CURLOPT_USERNAME and CURLOPT_PASSWORD that sort of
deprecates the good old CURLOPT_USERPWD since they allow applications to set
the user name and password independently and perhaps more importantly allow
both to contain colon(s) which CURLOPT_USERPWD doesn't fully support.
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r-- | docs/KNOWN_BUGS | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 2c263e72c..dcc693cb9 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -160,10 +160,10 @@ may have been fixed since this was written! doesn't do a HEAD first to get the initial size. This needs to be done manually for HTTP PUT resume to work, and then '-C [index]'. -7. CURLOPT_USERPWD and CURLOPT_PROXYUSERPWD have no way of providing user names - that contain a colon. This can't be fixed easily in a backwards compatible - way without adding new options (and then, they should most probably allow - setting user name and password separately). +7. CURLOPT_PROXYUSERPWD has no way of providing user names that contain a + colon. This can't be fixed easily in a backwards compatible way without + adding new options. CURLOPT_USERPWD was split into CURLOPT_USERNAME and + CURLOPT_PASSWORD for this reason. 6. libcurl ignores empty path parts in FTP URLs, whereas RFC1738 states that such parts should be sent to the server as 'CWD ' (without an argument). |