aboutsummaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-10 15:22:15 +0000
committerGravatar Sadie Powell2022-12-10 15:22:15 +0000
commit86b4a0853e41f02d1b004a94cc64749b0a3a0ff4 (patch)
treef9d998725d524eddbae5652fbe0323e0cf715711 /src/command_parse.cpp
parentAllow modules to ignore any checks from OnPreOperLogin. (diff)
Remove the unused Extensible* parameter to PassCompare/OnPassCompare.
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 950a71c7e..00d9e6008 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -26,10 +26,10 @@
#include "inspircd.h"
-bool InspIRCd::PassCompare(Extensible* ex, const std::string& data, const std::string& input, const std::string& hashtype)
+bool InspIRCd::PassCompare(const std::string& data, const std::string& input, const std::string& hashtype)
{
ModResult res;
- FIRST_MOD_RESULT(OnPassCompare, res, (ex, data, input, hashtype));
+ FIRST_MOD_RESULT(OnPassCompare, res, (data, input, hashtype));
/* Module matched */
if (res == MOD_RES_ALLOW)