aboutsummaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-11 00:37:09 +0000
committerGravatar Sadie Powell2023-01-11 00:56:10 +0000
commitb7b72521a7066f7694fdcc78702936fae4b11894 (patch)
tree2ecc424d56526cb8e8cd0e846a285c53628ae385 /src/users.cpp
parentQualify 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.cpp2
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);
}