diff options
author | Adam <Adam@anope.org> | 2014-01-21 17:20:15 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-01-21 17:20:15 -0500 |
commit | 4d9273efa42a16380de8ac81c615eaac89052f68 (patch) | |
tree | 8c33a14022cdd5fe303fd3bd5160a5b490752c78 /modules/protocol/hybrid.cpp | |
parent | 67c13b41eeda261b9b94a5cbc9eb55413b0d92cd (diff) |
Unbreak account stuff from commit ccae59430ab50393f43ccc38a6a6c0c24191b601.
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-rw-r--r-- | modules/protocol/hybrid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index ab5777b86..708e66849 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -211,9 +211,9 @@ class HybridProto : public IRCDProto UplinkSocket::Message(source) << "SVSMODE " << u->GetUID() << " " << u->timestamp << " " << buf; } - void SendLogin(User *u) anope_override + void SendLogin(User *u, NickAlias *na) anope_override { - IRCD->SendMode(Config->GetClient("NickServ"), u, "+d %s", u->Account()->display.c_str()); + IRCD->SendMode(Config->GetClient("NickServ"), u, "+d %s", na->nc->display.c_str()); } void SendLogout(User *u) anope_override |