1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 23:06:39 +02:00

Fix order of UID params for client introduction

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1515 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-11-03 21:14:46 +00:00
parent 5373ece555
commit bb9be2a6b5
+1 -1
View File
@@ -553,7 +553,7 @@ class InspIRCdProto : public IRCDProto
void SendClientIntroduction(const char *nick, const char *user, const char *host, const char *real, const char *modes, const char *uid)
{
send_cmd(ServerName, "UID %ld %s %s %s %s +%s 0.0.0.0 :%s", static_cast<long>(time(NULL)), nick, host, host, user, modes, real);
send_cmd(ServerName, "UID %s %ld %s %s %s %s 0.0.0.0 %ld +%s :%s", uid, static_cast<long>(time(NULL)), nick, host, host, user, static_cast<long>(time(NULL)), modes, real);
send_cmd(nick, "OPERTYPE Service");
}