mirror of
https://github.com/anope/anope.git
synced 2026-07-07 22:03:14 +02:00
Fix 1.9.0 -> 1.9.1 incompatibility on a patch.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2005 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -705,13 +705,13 @@ class InspIRCdProto : public IRCDProto
|
||||
|
||||
void SendAccountLogin(User *u, NickCore *account)
|
||||
{
|
||||
send_cmd(TS6SID, "METADATA %s accountname :%s", u->uid, account->display);
|
||||
send_cmd(TS6SID, "METADATA %s accountname :%s", u->GetUID().c_str(), account->display);
|
||||
|
||||
}
|
||||
|
||||
void SendAccountLogout(User *u, NickCore *account)
|
||||
{
|
||||
send_cmd(TS6SID, "METADATA %s accountname :", u->uid);
|
||||
send_cmd(TS6SID, "METADATA %s accountname :", u->GetUID().c_str());
|
||||
}
|
||||
|
||||
int IsNickValid(const char *nick)
|
||||
|
||||
Reference in New Issue
Block a user