| 57 | } |
| 58 | |
| 59 | bool PlatformHelper::HasUserPassword(const std::string &userName) { |
| 60 | return true; |
| 61 | } |
| 62 | |
| 63 | PlatformLoginResult PlatformHelper::CheckLogin(const std::string &userName, const std::string &password) { |
| 64 | struct passwd *passwdEntry = getpwnam(userName.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected