Update FtpServer.cpp

Astyle update
This commit is contained in:
Luc 2019-11-02 18:50:02 +01:00
parent 39b1bb57fd
commit a628ef2a97

View File

@ -314,8 +314,8 @@ bool FtpServer::isUser(const char * user)
if ((user != nullptr) && ((strcmp(user, DEFAULT_ADMIN_LOGIN) == 0) || (strcmp(user, DEFAULT_USER_LOGIN) == 0))) {
_currentUser = user;
return true;
}
return false;
}
return false;
#endif //AUTHENTICATION_FEATURE
(void)user;
_currentUser = DEFAULT_ADMIN_LOGIN;