diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-14 17:48:13 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-14 17:48:13 +0000 |
commit | 2ee049d7d87d85bd95d2d96b11346054cfabf527 (patch) | |
tree | ec575859e5d2ee33cf8d45d7b3df30e8924d8601 /src | |
parent | b88a12f8e568d4d66a93ca90bfd27bef0d6bd6c9 (diff) |
fixed a small issue in inspircd12 support, introduced with the last commit
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2504 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-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 b955cb907..517505b8e 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, ":%s BURST", TS6SID); + send_cmd(TS6SID, "BURST"); send_cmd(TS6SID, "VERSION :Anope-%s %s :%s - %s (%s) -- %s", version_number, ServerName, ircd->name, version_flags, EncModule, version_build); } |