summaryrefslogtreecommitdiff
path: root/src/protocol/bahamut.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 21:12:10 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 21:12:10 +0000
commit5373ece5559e97b5ac770934f02b901817c0d4a0 (patch)
treee32119609530df1a10863468cd6dee37c2ed4895 /src/protocol/bahamut.c
parente4dfff282dd4b95ee5ade2914b7be1ded73d5eb9 (diff)
Add UID parameter to SendClientIntroduction, and make it get a UID. This is a bit... ugly... but hey, if it works.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1514 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r--src/protocol/bahamut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index ef831be88..e5070b1cd 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -694,7 +694,7 @@ class BahamutIRCdProto : public IRCDProto
else send_cmd(source->nick, "KICK %s %s", chan, user);
}
- void SendClientIntroduction(const char *nick, const char *user, const char *host, const char *real, const char *modes)
+ void SendClientIntroduction(const char *nick, const char *user, const char *host, const char *real, const char *modes, const char *uid)
{
EnforceQlinedNick(nick, s_BotServ);
send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, static_cast<long>(time(NULL)), modes, user, host, ServerName, real);