Use a more predictable response code for invalid user

This commit is contained in:
Will Medlar 2020-09-12 01:30:24 -05:00 committed by mtheall
parent 9f86715a49
commit 69cd065194

View File

@ -2743,7 +2743,7 @@ void FtpSession::USER (char const *args_)
return;
}
sendResponse ("502 Invalid user\r\n");
sendResponse ("430 Invalid user\r\n");
}
// clang-format off