summaryrefslogtreecommitdiff
path: root/modules/protocol/unrealircd.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-03 23:54:03 +0000
committerSadie Powell <sadie@witchery.services>2025-03-03 23:57:12 +0000
commit34896cefe99152ffad1cfd9dac2efbc52fcb8fa0 (patch)
tree4412680fe910b90767cc8b290ad2eb268c4f5324 /modules/protocol/unrealircd.cpp
parentc0c7046a6df35d416f6cccf4fc0ea55018a12d93 (diff)
Misc cleanup of ns_sasl and sasl.h.
Diffstat (limited to 'modules/protocol/unrealircd.cpp')
-rw-r--r--modules/protocol/unrealircd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp
index 35df271d7..4d0a2df16 100644
--- a/modules/protocol/unrealircd.cpp
+++ b/modules/protocol/unrealircd.cpp
@@ -1301,7 +1301,7 @@ struct IRCDMessageSASL final
void Run(MessageSource &source, const std::vector<Anope::string> &params, const Anope::map<Anope::string> &tags) override
{
- if (!SASL::sasl)
+ if (!SASL::service)
return;
SASL::Message m;
@@ -1309,7 +1309,7 @@ struct IRCDMessageSASL final
m.target = params[0];
m.type = params[2];
m.data.assign(params.begin() + 3, params.end());
- SASL::sasl->ProcessMessage(m);
+ SASL::service->ProcessMessage(m);
}
};