diff options
| author | 2023-01-11 00:37:09 +0000 | |
|---|---|---|
| committer | 2023-01-11 00:56:10 +0000 | |
| commit | b7b72521a7066f7694fdcc78702936fae4b11894 (patch) | |
| tree | 2ecc424d56526cb8e8cd0e846a285c53628ae385 /src/users.cpp | |
| parent | Qualify auto correctly in all cases. (diff) | |
Fix calling various static functions through a type instance.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index ed2d00112..c6e8ce867 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1272,5 +1272,5 @@ bool OperAccount::CanAutoLogin(LocalUser* user) const bool OperAccount::CheckPassword(const std::string& pw) const { - return ServerInstance->PassCompare(password, pw, passwordhash); + return InspIRCd::PassCompare(password, pw, passwordhash); } |
