diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-14 17:40:47 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-14 17:40:47 +0000 |
commit | b88a12f8e568d4d66a93ca90bfd27bef0d6bd6c9 (patch) | |
tree | 250f9408150a6556e1db5a909b007100598dc753 | |
parent | f4cc123f16d37cbfc70c7c5893ee37a0c984e668 (diff) |
fixed inspircd12 support - now we send a TS6SID on BURST
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2503 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index 70afbfec4..b955cb907 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -621,7 +621,7 @@ class InspIRCdProto : public IRCDProto inspircd_cmd_pass(uplink_server->password); me_server = new_server(NULL, ServerName, ServerDesc, SERVER_ISME, TS6SID); SendServer(me_server); - send_cmd(NULL, "BURST"); + send_cmd(NULL, ":%s BURST", TS6SID); send_cmd(TS6SID, "VERSION :Anope-%s %s :%s - %s (%s) -- %s", version_number, ServerName, ircd->name, version_flags, EncModule, version_build); } |