1
0
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:
rburchell
2009-02-11 00:23:25 +00:00
parent f4cdea8348
commit 0a5ae7e6d8
+2 -2
View File
@@ -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)