diff options
author | Zoddo <zoddo.ino@gmail.com> | 2016-10-02 13:56:37 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-02 13:56:37 -0400 |
commit | ee7af884c7909c30839d7b6ceb47abdbdde4ed97 (patch) | |
tree | 6b300b9a6bb471286b63f3ed4b1e33d8cb1255b1 /modules/protocol/unreal.cpp | |
parent | 33ef08b8a0fb910fa7fd99584dbae88630738a3e (diff) |
Send vident/vhost in SVSLOGIN with SASL
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index fe5ddad2d..d805e60cb 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -394,7 +394,7 @@ class UnrealIRCdProto : public IRCDProto Uplink::Send(ServiceBot::Find(message.source), "SASL", message.target.substr(0, p), message.target, message.type, message.data); } - void SendSVSLogin(const Anope::string &uid, const Anope::string &acc) override + void SendSVSLogin(const Anope::string &uid, const Anope::string &acc, const Anope::string &vident, const Anope::string &vhost) override { size_t p = uid.find('!'); if (p == Anope::string::npos) |