diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-03 23:54:03 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-03 23:57:12 +0000 |
commit | 34896cefe99152ffad1cfd9dac2efbc52fcb8fa0 (patch) | |
tree | 4412680fe910b90767cc8b290ad2eb268c4f5324 /modules/protocol/plexus.cpp | |
parent | c0c7046a6df35d416f6cccf4fc0ea55018a12d93 (diff) |
Misc cleanup of ns_sasl and sasl.h.
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index 7bfcd4948..3570c45f7 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -248,14 +248,14 @@ struct IRCDMessageEncap final } } - else if (params[1] == "SASL" && SASL::sasl && params.size() >= 6) + else if (params[1] == "SASL" && SASL::service && params.size() >= 6) { SASL::Message m; m.source = params[2]; m.target = params[3]; m.type = params[4]; m.data.assign(params.begin() + 5, params.end()); - SASL::sasl->ProcessMessage(m); + SASL::service->ProcessMessage(m); } return; |