aboutsummaryrefslogtreecommitdiffstats
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
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)