diff options
author | Sadie Powell <sadie@witchery.services> | 2021-04-27 17:31:14 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-04-27 17:31:14 +0100 |
commit | dfc8bd4aa2c29a1314667b06485e6ad268ebff29 (patch) | |
tree | 4861cbbaa7aa7df5f4809e5af341666f4dd1f63e /include/protocol.h | |
parent | fd774bd52a849f3e60c0548250c832d6902215c7 (diff) |
Switch SendSVSLogin to take a NickAlias.
Diffstat (limited to 'include/protocol.h')
-rw-r--r-- | include/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h index 171c9e77b..55fdc0b69 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -223,7 +223,7 @@ class CoreExport IRCDProto : public Service virtual void SendSASLMechanisms(std::vector<Anope::string> &) { } virtual void SendSASLMessage(const SASL::Message &) { } - virtual void SendSVSLogin(const Anope::string &uid, const Anope::string &acc, const Anope::string &vident, const Anope::string &vhost) { } + virtual void SendSVSLogin(const Anope::string &uid, NickAlias *na) { } virtual bool IsNickValid(const Anope::string &); virtual bool IsChannelValid(const Anope::string &); |