diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-09 22:41:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-09 22:41:22 +0000 |
commit | a21a77d2308157dc6058f4356b2d29008e5bc155 (patch) | |
tree | f941f9c545f9f79ff088f50e66e276dc6cd7f788 /src | |
parent | 260b88c197645a3d2548c2938ff8097bdd69fb88 (diff) |
CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 4c432f19c..4a1cec378 100644 --- a/src/main.c +++ b/src/main.c @@ -4162,8 +4162,7 @@ operate(struct Configurable *config, int argc, char *argv[]) } } } /* if CURLE_OK */ - else if((CURLE_FTP_USER_PASSWORD_INCORRECT == res) || - (CURLE_LOGIN_DENIED == res)) { + else if(CURLE_LOGIN_DENIED == res) { curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response); if(response/100 == 5) |