From a21a77d2308157dc6058f4356b2d29008e5bc155 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 9 Apr 2006 22:41:22 +0000 Subject: CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore! --- src/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') 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) -- cgit v1.2.3